根据选中的单选按钮提取 html 表信息
使用下面的示例,我可以使用什么选择器组合来获取包含“价格”的文本? (假设用户单击了单选按钮和提交按钮)
<table border="1" id="modal_table">
<tbody>
<tr>
<td> <input type="radio" name='sub' value="509"/> </td>
<td> 509 </td>
<td class='price'> Price is $99 </td>
</tr>
<tr>
<td> <input type="radio" value="510"/> </td>
<td> 510 </td>
<td id="price"> Price is $88 </td>
</tr>
</table>
<input type='button' id='idButton2' value="Submit">
- 获取选中的单选按钮后面的 td 单元格的内容,或者
- 获取选中的单选按钮后面的由 id=price 标识的 td 单元格的内容
Using the example below, what combination of selectors could I use to get the text that contains "price"? (Assume user has clicked a radio button and the Submit button)
<table border="1" id="modal_table">
<tbody>
<tr>
<td> <input type="radio" name='sub' value="509"/> </td>
<td> 509 </td>
<td class='price'> Price is $99 </td>
</tr>
<tr>
<td> <input type="radio" value="510"/> </td>
<td> 510 </td>
<td id="price"> Price is $88 </td>
</tr>
</table>
<input type='button' id='idButton2' value="Submit">
- get content of td cell that follows the checked radio button, or
- get content of td cell identified by id=price that follows the checked radio button
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很好的答案!我必须将
parent()
更改为parents()
才能使其正常工作。这是代码:Great answer! I had to change
parent()
toparents()
to get it working. Here is the code: