这段 jquery 代码有什么问题
您好,我正在使用以下代码通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
text-decoration
是无效的属性名称,除非它作为字符串括在引号中:对象属性必须括在引号中,除非它们是有效的 Javascript 标识符。对于对象文字中的声明以及使用点表示法进行访问都是如此(因此
object.text-decoration
无效。text-decoration
is an invalid property name unless it's enclosed in quotes as a string: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.您不能在 JavaScript 中使用不带引号的连字符,要修改
text-decoration
使用textDecoration
:或引用它:
You can't use a hyphen unquoted in JavaScript, to modify
text-decoration
usetextDecoration
:Or quote it: