作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<div></div>
<p>foo</p>
<ul><li>bar</li></ul>
<ul><li>baz</li></ul>
如何只选择第一个 ul? (使用像 page = Mechanize.new.get(url)
这样的 Mechanize )
如果我尝试:
page.at('div').at('+ ul li').inner_html
,它是 nil
因为<ul>
不是直系兄弟
page.at('div').search('~ ul').first.at('li').inner_html
没关系,但是~ ul
接下来会得到所有<ul>
这是浪费的时间,因为我只需要第一个,而且可能有很多 <ul>
...
那么还有其他选择吗?
最佳答案
如果您通过 DOM 定位,您可以像这样使用 :first-of-type
伪选择器:
page.at('div').search('~ ul:first-of-type').first.at('li').inner_html
或
page.at('div').at('ul:first-of-type li').inner_html
关于css - 如何在具有 Mechanize 的下一个 sibling 中仅选择一种类型的第一个节点? ( ruby ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48344229/
我是一名优秀的程序员,十分优秀!