gpt4 book ai didi

javascript - jquery 未捕获语法错误 : Unexpected token -

转载 作者:行者123 更新时间:2023-11-30 10:43:15 25 4
gpt4 key购买 nike

我浏览了 jQuery 文档和谷歌,但我似乎无法弄清楚这一点,尽管我有一种感觉,这可能是我遗漏的一些非常明显的东西。出于某种原因,我收到此错误,

Uncaught SyntaxError: Unexpected token -

,每次我尝试执行我的脚本时,我都不知道为什么(我已经尝试过使用和不使用两个 - 负号的脚本,但没有任何区别)。

这是我的代码:

$('.head').hover(function() {
$(this).stop().animate({text-indent:'-60px'},100);
}, function() {
$(this).stop().animate({text-indent:'-50px'},200);
});

最佳答案

尝试:

$('.head').hover(function() {
$(this).stop().animate({'text-indent':'-60px'},100);
}, function() {
$(this).stop().animate({'text-indent':'-50px'},200);
});

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com