|
@@ -90,19 +90,19 @@ common={
|
|
|
}
|
|
|
}
|
|
|
$("#question .item").each(function(){
|
|
|
- if($(this).attr("option_id")==data.info.anwser){
|
|
|
+ if($(this).attr("data-option_id")==data.info.anwser){
|
|
|
$(this).addClass("cur_true");
|
|
|
}
|
|
|
- if($(this).attr("option_id")!=data.info.anwser&&$(this).hasClass("cur_answer")){
|
|
|
+ if($(this).attr("data-option_id")!=data.info.anwser&&$(this).hasClass("cur_answer")){
|
|
|
|
|
|
$(this).addClass("cur_error");
|
|
|
}
|
|
|
|
|
|
- if($(this).attr("option_id")==_this.data.player_answerId&&$(this).attr("option_id")==data.info.anwser){
|
|
|
+ if($(this).attr("data-option_id")==_this.data.player_answerId&&$(this).attr("data-option_id")==data.info.anwser){
|
|
|
//对方答案
|
|
|
$(this).addClass("player_true");
|
|
|
}
|
|
|
- if($(this).attr("option_id")==_this.data.player_answerId&&$(this).attr("option_id")!=data.info.anwser){
|
|
|
+ if($(this).attr("data-option_id")==_this.data.player_answerId&&$(this).attr("data-option_id")!=data.info.anwser){
|
|
|
//对方答案
|
|
|
$(this).addClass("player_error");
|
|
|
}
|