0

布局中的滑块有问题。
我有一个滑块,它正在工作,但图像被压缩和扭曲,而不是像原始滑块那样移动。

我收到以下错误:

TypeError: $(window).on is not a function
$(window).on( 'smartresize.eislideshow', function( event ) {

我该如何解决。我对这个js不熟悉。

4

2 回答 2

3

您在不支持该on()方法的页面中使用 jQuery 1.6.4。这仅在 1.7 版http://api.jquery.com/on/中引入

编辑

除了您包含的行之外,还有两个加载旧版本的脚本。这些是参考线。他们一定是从您的 wordpress 模板中提取出来的。

<script type='text/javascript' src='http://b.pusku.com/wp-includes/js/jquery/jquery.js?ver=1.7.2'></script>

<script type='text/javascript' src='http://b.pusku.com/wp-content/themes/wpbootstrap/bootstrap/js/jquery.js?ver=3.4.2'></script>
于 2012-12-04T12:43:07.763 回答
2

您的网站头部包含的不是一个,不是两个,而是 3 个不同版本的 jQuery!!!!(1.8.0、1.7.2,最后是 1.6.4)。最后一个覆盖前面的 2,并且 1.6.4 不包括 .on() 方法。

于 2012-12-04T12:43:19.000 回答