表中有一个复选框列表,我为每个复选框的值属性分配了一个唯一键。YUI3 中的选择器应该是什么,这样如果我知道它的值,我就可以获得一个复选框对象。
以下是结构示例:
<table id="mytable">
<tr>
<td><input type="checkbox" value="1" /></td><td>Apple store</td>
<td><input type="checkbox" value="2" /></td><td>Play store</td>
</tr>
</table>
需要以下格式的代码: Y.one("#mytable input[type=checkbox,value=1]");
这必须返回 Apple Store 的复选框对象,但它不起作用.. 任何想法?