将 XPath 转换为 jQuery 选择器的工具?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
右键单击某个元素时,Firebug 中会显示“复制 css 路径”。它可用于创建选择器。
There's a 'copy css path' in Firebug when right-clicking an element. It can be used to create a selector.
https://addons.mozilla.org/en-US/firefox/addon/firepath/
https://addons.mozilla.org/en-US/firefox/addon/firepath/
我不确定您是否询问关于将 XPath 转换为 CSS 选择器的一般问题,但我发现这篇文章 jquery:选择 xpath 或将 xpath 转换为 css? 这可能会有所帮助。推荐使用“eq”方法按索引选择元素。所以第 20 个 TR 中的第五个 TD 是
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