关于单选框
怎么样才能实现这个功能,就是单选身份证号,则下面显示需要输入的是身份证号和姓名;单选准考证号,下面显示的是准考证号和姓名?
[解决办法]
<li id="outInvestment">
<label for="outInvestment">外省投入<font color="red">*</font></label>
<input id="outInvestment" type="text" name="pds.outInvestment" class="validate[required,custom[number]]" value="" />
</li>
$("#outInvestment").hide();
$("#outInvestment").show();
参考这个例子,把你的换掉就行了。