我创建了一个可以多选的列表框,如下所示:
<td rowspan="20">
<html:select property="doneTypeform" tabindex="<%=(i2++).toString() %>" multiple="multiple" size="35">
<html:option value="">--Please Select--</html:option>
<html:optionsCollection name="doneTypeCol"/>
</html:select>
</td>
我想为checkbox
列表框中的每个项目添加。我怎样才能做到这一点?
编辑:
像这样的东西:http ://code.google.com/p/dropdown-check-list/
<script src="jquery.js"></script>
<script src="dropdownchecklist.js"></script>
<script>
$(document).ready(function() {
$("#select_id").dropdownchecklist();
});
</script>
当我没有 id 属性时如何添加 select_id。我尝试使用属性但它不起作用