javascript – 为什么我的JQuery没有在IE上加载?

前端之家收集整理的这篇文章主要介绍了javascript – 为什么我的JQuery没有在IE上加载?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我做了这个javascript测验:http://utbm.trunat.fr/CIP/quiz/

它适用于普通浏览器,但甚至不能加载Internet Explorer.

它接缝不能识别initQuiz()函数.

你知道我怎么解决这个问题吗?

最佳答案
> Internet Explorer不接受尾随逗号:

question = {'texte': $(this).attr("texte"),'sound': $(this).attr("sound"),}

>显然,另一个错误来自这一行:

$('title').html(QUIZ_TITLE[lang]);

原来是you can’t set the title like that in IE.请改用document.title = QUIZ_TITLE [lang].
>第三个错误是您引入了一个新变量,没有var关键字的问题,这是IE中的错误.你以后再做一遍,作为回应.像这样更新你的loadXML:

function loadXML(xml) {
   $(xml).find("question").each(function() {
    var question = {'texte': $(this).attr("texte"),'sound': $(this).attr("sound")};

      reponses = [];
      $(this).find('carre').find('reponse').each(function() {
        var reponse = {'texte': $(this).text(),'bonne': false};
        if($(this).attr('bonne') == "vrai") reponse['bonne'] = true;            
        reponses.push(reponse);
     });

     question['reponses'] = reponses;
     questions.push(question);
   });
   startGame(questions);
}

>第四个错误是您验证答案是否正确的方式.

if($(this).attr('data-type') == 'true')

您将data-type属性的值与字符串值“true”进行比较,但是在分配值时,将其设置为布尔值true:

$('#r'+(i+1)+'input').attr('data-type',r.bonne);

例如,要确保始终比较字符串值,可以将值设置为:

$('#r'+(i+1)+'input').attr('data-type',r.bonne.toString());
原文链接:https://www.f2er.com/jquery/428510.html

猜你在找的jQuery相关文章