JS在Chrome中工作但不在Firefox上工作

时间:2015-04-09 13:47:42

标签: javascript wordpress firefox

这个脚本在几周前停止在FireFox中工作,大约是我在网站上添加SSL证书的时候。我已经确认SSL到处使用,并且我已经尝试禁用所有最近安装的插件,但无济于事。

我已经使用Web控制台查看了它,并且没有看到任何错误 - 尽管我对此并不十分熟悉。

我也在这里查看了其他关于js在Chrome工作但不在FF工作的帖子,但是所提出的解决方案都没有适用于我的脚本。

问题是js显然根本没有被调用 - 它应该出现在介绍和"分享"之间。图形。

有什么想法吗?

这是应该在文本和"分享"之间显示的页面。 graphic:Quiz

这是js文件:Javascript

以下是代码:

$.each(questions, function (key, value) { 
//console.log( key + ": " + value.question );        question = value.question;
    qtype = value.qtype;
    opts = value.opts;
    answer = value.answer;
    special = value.special;        $('#quiz-form').append('<p>&#160;<br>' + parseInt(key + 1) + ") " + question + '</p>');        if (qtype == "radio")
{       opt_array = opts.split(',');       for (i = 0; i < opt_array.length; i++)
{      $('#quiz-form').append('<p><input data-ftype="radio" type="radio" name="question_' + key + '" class="question_' + key + '" value="' + opt_array[i] + '"> ' + opt_array[i] + ' </p>');           }
} else if (qtype == "checkbox"}
else if (qtype == "checkbox")
{
   opt_array = opts.split(',');
   for (i = 0; i<opt_array.length;i++)
{
    $('#quiz-form').append('<p><input data-ftype="checkbox" type="checkbox" name="question_' + key + '" class="question_' + key + '" value="'+ opt_array[i] + '"> ' + opt_array[i] + '</p>');
}
}
    else if (qtype == "input")
{

    $('#quiz-form').append('<p><input data-ftype="text" name="question_' + key + '" type="text" class="question_' + key + '" value="" style = "border:1px solid"  ></p>');
}        $('#quiz-form').append('<p><input name="answer_' + key + '" type="hidden" value="' + answer + '" class="answer_' + key + '"   ></p>');
    $('#quiz-form').append('<p class="special" id="special_' + key + '" ><strong>Correct answer(s): ' + answer + '</strong> » Explanation: ' + special + '</p>');
});
    $('#quiz-form').append('<p>All done? Check your answers: <input name="submit" id="submit" type="button" value="Submit"></p>');        $('#quiz-form').append('<p>Want another chance? <input name="refresh" id="refresh" type="button" value="Start over"></p>');        $( "#quiz-form" ).on( "click", "#submit", function() {


quest_numb = questions.length;

user_answers = new Array();
real_answers = new Array();   
for (i = 0; i <quest_numb;i++) 

{

if ($("input[name ='question_" + i + "']").data('ftype')=='radio')     {       user_answers.push($(":input[type='radio'][name ='question_" + i + "']:checked").val());      }      if ($("input[name ='question_" + i + "']").data('ftype')=='text') {       user_answers.push($(":input[type='text'][name ='question_" + i + "']").val());      }      if ($("input[name ='question_" + i + "']").data('ftype')=='checkbox') {
  var chkArray = [];
     $(".question_" + i + ":checked").each(function() {
  chkArray.push($(this).val());
 });   var selected = chkArray.join(',')
 user_answers.push(selected);      }        real_answers.push($(":input[type='hidden'][name ='answer_" + i + "']").val());      // alert($(":input[type='text'][name ='question_"+i+"']").val());

 }

 points=0;
 message='<div id="results">';
 inc=1;
 for(i=0;i<real_answers.length;i++) {
 if (typeof user_answers[i]=='undefined' || user_answers[i]=='') 
{   //message+='<p>'+parseInt(i+1) + ')' +' You didn't answer this     question.</p>';
  $('#special_'+i).text(i+inc+') '+'You didn\'t answer this question.');
  $('#special_'+i).show();
  $(":input[name ='question_"+i+"']").prop('disabled',true);
 }

  else if( user_answers[i].toLowerCase().trim()==real_answers[i]) 
  {


points++;
//message+='<p>' +parseInt(i+1)  + ')' +' Très bien !</p>';
$('#special_'+i).text(i+inc+') '+'Très bien !');
  $('#special_'+i).addClass('correct');
  $('#special_'+i).show();

 }   else 
 {

  $('#special_'+i).text($('#special_'+i).text().replace(i+inc+') '+' ',''));
  $('#special_'+i).prepend(i+inc+') '+' ');
  $('#special_'+i).show();
 }

 }
 message+='<p> Your score: ' + points + '/' + real_answers.length + '</p>';percent=points*100/real_answers.length;if(percent>=90) 
 {
   message+='<p> Chapeau !</p>';

 }
 if(percent>=80 && percent<90) 
 {
 message+='<p> Très bien !</p>';

 }if(percent>=60 && percent<80) 
 {
 message+='<p> Pas mal.</p>';

 }if(percent>=40 && percent<60) 
 {
 message+='<p> Houp ! Il faut étudier un peu plus.</p>';

 }
 if(percent<40) 
 {
   message+='<p> Oh là là - il faut étudier !</p>';

}message+='</div>';
    $('#quiz-form #results').remove();
    $('#quiz-form').prepend(message);
$("html, body").animate({ scrollTop: 0 }, "slow");

 });
    $( "#quiz-form" ).on( "click", "#refresh", function() {
 location.reload();
 window.scrollTo(0,0);
 });
});function getQueryVariable(variable)
{
       var query = window.location.search.substring(1);
   var vars = query.split("&");
   for (var i = 0; i<vars.length;i++) {
           var pair = vars[i].split("=");
           if (pair[0] == variable){return pair[1];}
   }
       return(false);
 }

1 个答案:

答案 0 :(得分:1)

您的代码中出现了许多JS错误。首先,您需要修复不安全的文件引用,因为您使用的是SSL,因此不会加载这样的文件 - 将其更改为相对路径或将http替换为https:

<script src="http://www.feedblitz.com/js/tinybox2/tinybox.js" type="text/javascript">

如果您不确定如何在浏览器中查看这些错误,请参阅以下任何文章:

https://developer.chrome.com/devtools https://developer.mozilla.org/en/docs/Tools/Web_Console