-4

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

下面的代码在 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> 
4

1 回答 1

1

尝试这个

$("#boxscroll").scroll(function(){
  $("#boxscroll").getNiceScroll().resize();
});
于 2013-09-02T16:55:02.910 回答