我已經完成了類似的操作。如何使複選框在多種情況下啓用和禁用文本框
<html>
<head>
<script type="text/javascript">
<!--
function toggleTB(what){
if(what.checked){document.theForm.theTB.disabled=1}
else{document.theForm.theTB.disabled=0}}
//-->
</script>
</head>
<body>
<form name="theForm">
<input type="checkbox" name="theCB" onClick="toggleTB(this)">Toggle The Text Box<br>
<input type="text" name="theTB" value="asdf">
</form>
</body>
</html>
但這僅用於一個再寄一次重複需要這個功能在其他行也讓我怎麼能使用此功能多次。
我的形式是這樣的:
<tr>
<td style="border-top:none; text-decoration:underline;" >Specific operations/procedures</td>
<td>
<input type="checkbox" name="sd3[]" value="mfi_nam9" />Other(please specify):
<input type="text" name="mfi_nam9" class="text required" id="mfi_name"
</td>
</tr>
<tr>
<td style="border-top:none; text-decoration:underline;" >General principles/strategies</td>
<td>
<input type="checkbox" name="sd2[]" value="mfi_nam8" />Other(please specify):
<input type="text" name="mfi_nam8" class="text required" id="mfi_name"
</td>
</tr>
我將等待烏拉圭回合的反應,我非常感謝u人幫助我以前並希望你能幫助我這個時間太長。
我喜歡這個,但是當我使用jquery-1.5時,我的設計受到影響。那麼該怎麼做,除了jQuery之外,還有其他解決方案嗎? – Nyaro 2011-03-10 09:13:39