$(document).ready(function() {
    $('div.view-kettha-links div.view-content').hoverscroll
    ({
        width: 225,
        height: 100,
        vertical: true,
        arrows: true,
        arrowsOpacity: 0.7; --> chrome detect as SyntaxError: Unexpected token
    });
});

chrome 检测为 SyntaxError: Unexpected token 但仍在工作,在 firefox 中该功能很好,但在 IE 中该功能根本不起作用,需要帮助。

最佳答案

arrowsOpacity: 0.7;
// remove this....^

假设它在您的源代码中并且不是由 Chrome 添加为错误消息的一部分,请删除分号。

关于javascript - 语法错误 : Unexpected token,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7494229/

10-12 06:38