我写了一段点击按钮就实现图片左右滚动的代码,在火狐和ie8都能正常运行,但在ie6和ie7中载入页面时老是弹出个窗口提示脚本错误,但能正确运行点击按钮左右滚动图片的效果。我不想在ie6和ie7中载入页面时老是出现这个弹出错误的问题,求助大神帮忙解决,谢谢了。下面是我写的代码:
<!-- [if lt IE9] --><!-- [endif] -->
<!-- [if gte IE9] --><!-- [endif] -->
<br> $(function(){</p> <pre><code>var i=0; var width=$('.product .center a').width(); var total_width=$('.product .center ').width(); $('.product .left button').on('click',function(){ if(i==0){ i=-total_width+width; $('.product .center p').css('left',i); } else{ i=i+width; $('.product .center p').css('left',i); } }); $('.product .right button').on('click',function(){ i=i-width; if(i<=-total_width){ i=0; $('.product .center p').css('left',i); } else{ $('.product .center p').css('left',i); } }); </code></pre> <p>});</p>