2014-04-04 48 views
1

我的脚本似乎在firefox和chrome上工作正常,但它似乎在ie8上失败。 Stragely我在脚本中的所有代码之前放置了一个alert函数,并且alert函数有效。但是document.ready函数几乎从不执行。 这是一个ie8问题?如果是的话,我该如何解决这个问题? 请帮忙。jquery脚本在Chrome浏览器上工作正常,但不是ie8

代码:

<script src="/_layouts/topsoe.common/js/jquery-1.10.2.min.js?rev=YoBy5yEtsejNrLIrIXUs2g%3D%3D" type="text/javascript"></script> 
<script> 
$(document).ready(function() { 
    // hide the last two columns and their headings 
    $("#WebPartWPQ3 .ms-vh2:eq(5)").css("display", "none"); // for the last two column headings; 
    $("#WebPartWPQ3 .ms-vh2:eq(4)").css("display", "none"); 
    // for each row in the application page 
    var idcount = 0; 
    $("#WebPartWPQ3 .ms-itmhover").each(function() { 
     var proj_ID='project' + idcount; // assigning each row an id so that they can be accesed individually 
     $(this).attr('id', 'project' + idcount); 
     idcount = idcount + 1; 
     $("#"+proj_ID+" .ms-vb2:eq(5)").css("display", "none"); 
     $("#"+proj_ID+" .ms-vb2:eq(4)").css("display", "none"); 
     // extracting the project status and the precentage of completion. these will be used to assign color codes 
     var status = $("#"+proj_ID+" .ms-vb2:eq(3)").html(); 
     var percentage = $("#" + proj_ID + " .ms-vb2:eq(5) div").html(); 
     var suffix = percentage.match(/\d+/); 
     console.log(proj_ID + "\n" + status + "\n" + percentage); // remove after testing 
     // formatting the status cell accroding to the status and percentage; 
     var bg_color; var status_formatted; 
     if (status == "In Progress") { 
      $("#" + proj_ID + " .ms-vb2:eq(3)").html("<div style='position:relative; width:" + suffix + "%;background:#44AFF6; z-index:0; height:60px; margin-bottom:-50px;'></div><div style='position:relative; z-index:1; text-align:center; margin-left:2px;' >In Progress</br>" + percentage + "</div>"); 
     } 
     if (status == "Completed") { 
      $("#" + proj_ID + " .ms-vb2:eq(3)").html("<div style='position:relative; width:100% ;background:#57C759; z-index:0; padding:20px 2px; coor:black; height:23px; text-align:center'>completed</div>"); 
     } 
     if (status == "Halted") { 
      $("#" + proj_ID + " .ms-vb2:eq(3)").html("<div style='position:relative; width:" + suffix + "%;background:#FF0033; z-index:0; height:60px; margin-bottom:-50px;'></div><div style='position:relative; z-index:1; text-align:center; margin-left:2px;' >Halted </br> " + percentage + "</div>"); 
     } 
     if (status == "User Acceptance Testing") { 
      $("#" + proj_ID + " .ms-vb2:eq(3)").html("<div style='position:relative; width:100% ;background:#FFFF66; z-index:0; padding:20px 2px; coor:black; height:23px; text-align:center;'>UAT</div>"); 
     } 
    }); 
}); 
</script> 
+0

你可以请检查,哪一行代码在IE8中引发JS错误?您可以使用开发人员工具的脚本控制台窗口来检查它。 –

+2

如果我没记错的话,如果你在ie8 – pathfinder

+0

上使用console.log()奇怪地没有错误,你的脚本将会失败。代码停止工作。我也注意到它在我打开控制台后有效 –

回答

0

面对完全相同的情况曾经在我的应用程序。没有错误,但代码不会运行,除非你打开开发工具。而罪魁祸首就是那个console.log声明。评论/删除该console.log语句,它应该工作正常

+0

是啊! IE很奇怪!从来没有面对这与其他浏览器 –

+0

奇怪?它f ****刺激性。这几乎花了我整整一天的时间来弄清楚。令人惊讶的是,该控制台仅在一个主干路由器的初始化功能中出错,代码其他部分的控制台正常工作。这是我们大多数人讨厌IE:P –

+0

是啊!的SharePoint + IE8 =死亡 –

相关问题