我有两个<td>
挨着的。它们都是<select>
下拉菜单。当且仅当第一个具有选项值或 id 时,我想显示一个scantron
。
我的功能如下:
<script type="application/javascript">
function EnableDisableTD() {
if ($("#scantron").attr("selected")) {
$("#version").show();
} else {
$("#version").hide();
}};
</script>
这是我的html:
<td><select>
<option selected="selected">Computer Based Format</option>
<option id="scantron">Scantron Format</option>
</select></td>
<td id="version"><select name="version">
<option selected="selected">1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select></td>
为什么这对我不起作用?