将 XPath 转换为 jQuery 选择器的工具?

发布于 2024-12-07 14:36:44 字数 223 浏览 1 评论 0原文

Firebug 能够在 HTML 视图中显示任何 DOM 元素的 xpath。我想知道是否有办法将 xpath 转换为 jQuery 选择器? (我不喜欢手动执行此操作)

这将大大节省我为没有 id 和 id 的元素找到正确选择器的时间。位于 DOM 层次结构的深处。例如,第20 TR

AFAIK中的第五个TD,jQuery中的xpath支持被删除,所以我不能直接在jQuery中使用xpath?

Firebug is able to display the xpath for any DOM element in the HTML view. I was wondering if there's a way to convert the xpath to a jQuery selector? (I prefer not to do this manually)

This will greatly save me time to find the correct selector for elements which don't have an id & are way deep in the DOM hierarchy. For example the fifth TD in the 20th TR

AFAIK, xpath support in jQuery is dropped so I can't use the xpath straight in jQuery?

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

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

发布评论

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

评论(3

揽月 2024-12-14 14:36:44

右键单击某个元素时,Firebug 中会显示“复制 css 路径”。它可用于创建选择器。

There's a 'copy css path' in Firebug when right-clicking an element. It can be used to create a selector.

沧笙踏歌 2024-12-14 14:36:44

我不确定您是否询问关于将 XPath 转换为 CSS 选择器的一般问题,但我发现这篇文章 jquery:选择 xpath 或将 xpath 转换为 css? 这可能会有所帮助。推荐使用“eq”方法按索引选择元素。所以第 20 个 TR 中的第五个 TD 是

$('tr').eq(20).find('td').eq(5)

I'm not sure if you are asking a general question abotu converting XPath to CSS selector, but I found this post jquery: selecting xpath or converting xpath to css? which might be of help. It reccomends using "eq" method to select an element by index. So the fifth TD in the 20th TR would be

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