0

jQuery 工具似乎没有在 IE 7 中初始化。IE 7 说第 240 行字符 3 存在问题。

这是我的代码:

<script>
    $(document).ready(function() {
        $("#slidertabs").jtTabs("#slider-content > p", {
            effect: 'fade',
            fadeOutSpeed: "slow",
            current: 'active',
            rotate: true,
        }).slideshow({autoplay: true, interval: 6000, clickable: false}); // <-- line 240
    });
</script>
4

2 回答 2

8

当最后一个列表项后面有逗号时,IE7 不喜欢它,就像在第 240 行之前的行中的 JavaScript 对象一样。

从最后一项中删除逗号,它应该没问题。

更新代码:

<script>
    $(document).ready(function() {
        $("#slidertabs").jtTabs("#slider-content > p", {
            effect: 'fade',
            fadeOutSpeed: "slow",
            current: 'active',
            rotate: true // removed comma from here
        }).slideshow({autoplay: true, interval: 6000, clickable: false}); // <-- line 240
    });
</script>
于 2013-01-08T10:15:11.997 回答
1

必须如下所示:

<script>
    $(document).ready(function() {
        $("#slidertabs").jtTabs("#slider-content > p", {
            effect: 'fade',
            fadeOutSpeed: "slow",
            current: 'active',
            rotate: true
        }).slideshow({autoplay: true, interval: 6000, clickable: false});
    });
</script>
于 2013-01-08T10:16:59.177 回答