@ 字符在 jQuery 中起什么作用?
在 选择器页面 上,它说 @
是元之一-人物。但它有什么作用呢?
On the selectors page, it says @
is one of the meta-characters. But what does it do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它曾经用于属性选择器 ,但从 jQuery 1.3+ 开始,情况不再如此。来自属性选择器文档:
It used to be used in the attribute selectors, but that's no longer the case as of jQuery 1.3+. From the attribute selector docs:
它以前用于获取属性,例如
[@href]
但它不再有效,并且会抛出语法错误,无法识别的表达式:[@href]
自 1.3+ 起It was formerly used to grab an attribute, eg
[@href]
but it's no longer valid and would throwSyntax error, unrecognized expression: [@href]
as of 1.3+它适用于 XPath 选择器,但其支持已被删除。
It was for XPath selectors, of which support for has been dropped.