我正在尝试使用一个复选框锁定/解锁一系列文本框,默认情况下它们都被锁定我尝试使用禁用功能并使用 javascript 锁定它们,但是文本框不会在禁用字段上提交值。我需要这些文本框来提交一个值,无论它们是锁定还是解锁
我正在使用
<script language="JavaScript">
<!--
function enable_text(status)
{
status=!status;
document.f1.shopper_pay.disabled = status;
document.f1.shopper_reimb.disabled = status;
document.f1.Shop_cost.disabled = status;
}
//-->
</script>
和
<form name='f1' action='editsurvey.php' method='post'>
<input type="checkbox" name=others onclick="enable_text(this.checked)" >
<input type='text' name='shopper_pay' value=$0.00 disabled='disabled'>
<input type='text' name='shopper_reimb' value=$40.00 disabled='disabled'>
<input type='text' name='Shop_cost' value=$35.00 disabled='disabled'>
不幸的是,这在功能上有效,但在提交时不包括禁用的字段 - 任何人都有任何想法