这是我调用 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>