这段 jquery 代码有什么问题

发布于 2024-12-05 10:24:22 字数 385 浏览 1 评论 0原文

您好,我正在使用以下代码通过 jquery 应用 css 的多个属性。我的代码是

$("div:contains('Awais')").css( {text-decoration : 'underline', cursor : 'pointer'} );

我收到 javascript 错误,

missing : after property id
$("div:contains(John)").css( {text-dec...: 'underline', cursor : 'pointer'} ); 

但是当我删除 text-decoration 属性时,错误消失了。这段代码有什么问题

Hi I am using following code for applying multiple attributes of css through jquery. My code is

$("div:contains('Awais')").css( {text-decoration : 'underline', cursor : 'pointer'} );

I get javascript error

missing : after property id
$("div:contains(John)").css( {text-dec...: 'underline', cursor : 'pointer'} ); 

But When I remoce text-decoration property the error vanishes. What is wrong with this code

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不离久伴 2024-12-12 10:24:22

text-decoration 是无效的属性名称,除非它作为字符串括在引号中:

$("div:contains('Awais')").css( {'text-decoration' : 'underline', cursor : 'pointer'} );

对象属性必须括在引号中,除非它们是有效的 Javascript 标识符。对于对象文字中的声明以及使用点表示法进行访问都是如此(因此 object.text-decoration 无效。

text-decoration is an invalid property name unless it's enclosed in quotes as a string:

$("div:contains('Awais')").css( {'text-decoration' : 'underline', cursor : 'pointer'} );

Object properties must be enclosed in quotes unless they are valid Javascript identifiers. This is true for declarations in object literals and also for accessing using the dot notation (so object.text-decoration is invalid.

走过海棠暮 2024-12-12 10:24:22

您不能在 JavaScript 中使用不带引号的连字符,要修改 text-decoration 使用 textDecoration

$("div:contains('Awais')").css( {textDecoration : 'underline', cursor : 'pointer'} );

或引用它:

$("div:contains('Awais')").css( {'text-decoration' : 'underline', cursor : 'pointer'} );

You can't use a hyphen unquoted in JavaScript, to modify text-decoration use textDecoration:

$("div:contains('Awais')").css( {textDecoration : 'underline', cursor : 'pointer'} );

Or quote it:

$("div:contains('Awais')").css( {'text-decoration' : 'underline', cursor : 'pointer'} );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文