作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将以下 Html stirng 存储在 JS 变量中:
<td>
<input onclick="Clicked(this);" type="radio" name="mmBox" id="mmBox">
</td>
<td>First Cell</td>
<td>2nd TD</td>
<td>3rd TD</td>
<td>4th TD</td>
<td>5th TD</td>
<td></td>
我根据需要选择第二、第三和第四 <td>
我已经尝试了以下但它没有返回任何东西:
console.log("6 " + $(selectedRow).wrap("<tr></tr>").children("td:nth-child(2)").html());
或
console.log("6 " + $(selectedRow).find("td:eq(2)").text());
即使是 .find
和 .select
方法也是如此,但它不返回任何东西。
请帮帮我,我想查询<td>
以及其中的值(value)
最佳答案
假设 selectedRow
变量包含您发布的 html 字符串,您应该使用 .filter
方法而不是 .find
:
$(selectedRow).filter(":eq(2)").text();
或者使用.eq
方法:
$(selectedRow).eq(1).text();
请注意 .eq
从零开始,因此 1 选择集合中的第二个元素。
关于javascript - 从字符串中选择 td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41460240/
我是一名优秀的程序员,十分优秀!