作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<fieldset class="attachmentTable large"><legend>SMF</legend>
<table cellspacing="2" cellpadding="2" border="0">
<tr>
<td>
<a href="
/aems/file/test.html">
</a>
</td>
<td>
foo
</td>
</tr>
</table>
</fieldset>
<fieldset class="attachmentTable large"><legend>tax</legend>
<table cellspacing="2" cellpadding="2" border="0">
<tr>
<td>
<a href="
/relf/file/test.html">
</a>
</td>
<td>
foo
</td>
</tr>
</table>
</fieldset>
HREF
仅当
<legend>tax</legend>
时的值?所以你们能帮我做同样的事情吗?
最佳答案
我会做:
page.search('legend[text()="tax"] + table a').each do |a|
puts a[:href]
end
关于ruby - 如何仅在`<legend>tax</legend> 时获取 `HREF` 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14469167/
我是一名优秀的程序员,十分优秀!