我有一个下拉框<table>
:
<TR >
<TD colspan="2" class="text1">
<div align="right">
<FONT color="#000000">
<INPUT name="services[]" type="checkbox" id="services[]" value="Employee ">
</FONT>
</div>
</TD>
<TD width="321" align="center" valign="top" class="text1">
<DIV align="left">Employee</DIV>
</TD>
</TR>
当用户选择上述复选框时,我希望启用以下下拉菜单:
<TR>
<TD width="155" height="25" align="right" class="text1">
<div align="right">Enquiry Type/For</div>
</TD>
<TD align="left" colspan="2" height="25">
<select name = "type" id = "type">
<!--<option value = "general">General</option>-->
<option value = "general">General</option>
<option value = "employee">employee</option>
<option value = "student">student</option>
</select>
</TD>
</TR>
我怎么做?
小提琴Here