按 ID 选择多个元素(每个元素都有唯一的 ID)
我的页面上有多个元素,并且所有元素都有唯一的 id,例如:title_1、title_2、title_n 等。
<a href="http://link" id="title_1">Link name</a>
<a href="http://link" id="title_2">Link name</a>
<a href="http://link" id="title_n">Link name</a>
这是选择这些链接的正确语法吗?
a[id^=title]
IT 似乎不起作用。
参考: http://jsoup.org/apidocs/org/jsoup/select/Selector .html
I have multiple elements on page and all of them have unique id something like that: title_1, title_2, title_n etc.
<a href="http://link" id="title_1">Link name</a>
<a href="http://link" id="title_2">Link name</a>
<a href="http://link" id="title_n">Link name</a>
Is this correct syntax for selecting these links?
a[id^=title]
IT seems to be not working.
Reference: http://jsoup.org/apidocs/org/jsoup/select/Selector.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除那个点
remove that dot