我正在处理一个 html 页面。该页面有一个包含 3 列和一个按钮的表格。表的一列是一个复选框(行数是动态变化的):
<table cellpadding="0" cellspacing="0" border="1" class="display" id="tag" width="100%">
<tbody>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="0"/>
<td>fruit</td>
<td>apple</td>
</tr>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="1"/>
<td>fruit</td>
<td>pear</td>
</tr>
</tbody>
</table>
<p><input type="button" value="Generate" onclick="generate()"></p>
当用户单击“生成”按钮时,generate() 函数将根据每一行的列生成一个特殊的字符串。
我的问题是如何检查“复选框”行是否被选中?我想在生成字符串时过滤那些未检查的行。
谢谢。