有哪些方法可以在 Chrome 扩展中选择元素?
我了解 getElementById、getElementByNames ... 和 getElementsByTagName
还有哪些其他方法可用于从 DOM 中选择一个或多个元素?如果某个项目没有 ID 或名称怎么办?
我听说我可以使用 XPath 表达式来选择一系列 HTML 元素。我如何使用 JavaScript 来做到这一点?有没有一个图书馆可以帮助我实现这一目标?
提前非常感谢:)
I know about getElementById, getElementByNames ... and getElementsByTagName
What other methods are available to select an element or elements from the DOM ? What if an item does not have an Id or Name.
I have heard that I can use XPath expression to select a range of HTML elements. How do i do that using JavaScript? Is there a library that will help me achieve this?
Thanx a lot in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不直接使用 jQuery?
如果您在脚本中需要它,您可以通过manifest.json注入jquery.js:
如果您在html页面(背景、选项等)中需要它,您可以使用
甚至
Why not just use jQuery?
If you need it in scripts you can inject jquery.js through manifest.json:
If you need it in html pages (background, options etc) you can use
or even