|
|
@@ -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") {
|