CSS 选择器选择 id 名称中带有斜杠的 id?

发布于 2024-10-19 11:25:47 字数 122 浏览 0 评论 0原文

我使用的 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 技术交流群。

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

发布评论

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

评论(5

哥,最终变帅啦 2024-10-26 11:25:47

你可以这样做

$("#\\/about-us")

           

you can do

$("#\\/about-us")

      

忘羡 2024-10-26 11:25:47

你可以这样做

     $("span[id*='/about-us']")

,它将返回 id 属性中带有“/about-us”的范围。

you can do it like this

     $("span[id*='/about-us']")

where it will return the span with '/about-us' in it's id attribute.

那请放手 2024-10-26 11:25:47

使用常规方式:

document.getElementById('id/with/slashes')

Use the regular way:

document.getElementById('id/with/slashes')
挽袖吟 2024-10-26 11:25:47

您可以使用 jQuery escapeSelector 来执行此操作。

$("#" + $.escapeSelector("id/with/slashes"))

You can use jQuery escapeSeletor to do this.

$("#" + $.escapeSelector("id/with/slashes"))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文