JQuery不在IE7中工作,但在IE10中工作

时间:2013-09-02 16:26:50

标签: javascript jquery html internet-explorer

这是我的javacript函数,它调用JQuery函数。

下面的代码在IE10中正常工作但在IE7中不起作用(在JQuery函数处停止)

function test()
{
//before calling JQuery function display message...
alert("Before");
//JQuery function...
$("#boxscroll").getNiceScroll().resize();
//After calling JQuery function display message...
alert("After");
}

IE10中的结果

  

之前

     

IE7中的结果

  

之前

     

(停在 JQuery $(“#boxscroll”)。getNiceScroll()。resize();

你可以在这里引用JQuery ...... https://github.com/inuyaksa/jquery.nicescroll

<script src="js/jquery.min.js"></script> 
<script src="js/jquery.nicescroll.min.js"></script> 

<script> 
$(document).ready(function() { 
var nicesx = $("#boxscroll").niceScroll({nativeparentscrolling:false,touchbehavior:false,cursorcolor:"#CCC",cursoropacitymax:0.5,cursorwidth:6,autohidemode:false,horizrailenabled:false}); 
}); 
</script> 

1 个答案:

答案 0 :(得分:1)

试试这个

$("#boxscroll").scroll(function(){
  $("#boxscroll").getNiceScroll().resize();
});