CSS 选择器选择 id 名称中带有斜杠的 id?
我使用的 CMS 生成了 。
我想用 jQuery 选择这个元素,但它似乎不喜欢选择其中带有斜杠的元素。
这可能吗?
I've got <span id="/about-us">
being generated by this CMS I'm using.
I'd like to select this element with jQuery but it doesn't seem to like selecting elements with a slash in them.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
你可以这样做
you can do
你可以这样做
,它将返回 id 属性中带有“/about-us”的范围。
you can do it like this
where it will return the span with '/about-us' in it's id attribute.
使用常规方式:
Use the regular way:
您可以使用 jQuery escapeSelector 来执行此操作。
You can use jQuery escapeSeletor to do this.
请参阅
jQuery 正则表达式选择器
或 相关问题
see
Regex Selector for jQuery
or related question