Explorar el Código

添加对错题条件卡控

namejr hace 5 años
padre
commit
d6bec89860
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7 1
      EBook.Web/Common/tasklib_book.js

+ 7 - 1
EBook.Web/Common/tasklib_book.js

@@ -228,7 +228,13 @@ function bindEventYS() {
     $(".yaoshi").on("click", function () {
         // 隐藏答案
         var NClsName = $(this).parent().attr("class") + " correntQue";
-        var PClsName = $(this).parent().attr("class").replace(" correntQue", "");
+        var PClsName = $(this).parent().attr("class");  // 对错题必然有correntQue,否则判断条件不成立
+        if (PClsName.indexOf(" correntQue") > -1) {
+            PClsName = PClsName.replace(" correntQue", "");
+        }
+        else {
+            PClsName = "";
+        }
         var NextClsName = $(this).parent().next().attr("class");
         var PreClsName = $(this).parent().prev().attr("class");
         if ($(this).attr("data-status") == "0") {