Forráskód Böngészése

添加对错题条件卡控

namejr 5 éve
szülő
commit
d6bec89860
1 módosított fájl, 7 hozzáadás és 1 törlés
  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") {