原型js获取具有特定值的元素
我正在抓取一些数据,我想在具有值的特定标签之后获取元素的值。
它是一个粗体标签,值为“Types:”。
<b>Types:</b>
一旦到达该元素,我就可以使用 Prototype 的 Element.next() 来获取我想要的数据。
我到底该怎么做? 我一直在摆弄 $$ 但似乎无法正确处理..
谢谢!
I am scraping some data and I want to get the the value of an element after a specific tag with value.
It's a bold tag with value 'Types:'.
<b>Types:</b>
Once I get to that element I can use Prototype's Element.next() to get the data I want.
How exactly do I do this?
I have been fiddling with $$ but can't seem to get it right..
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回值为“Types:”的第一个 b 元素:
Return the first b element with value "Types:":