我有一个复选框,如下所述。
<table>
<tr>
<td>
<input type='checkbox' name='testing1' value='testing1' onclick='javascript: testingFunction(this.checked,'testing1');'>
</td>
<td>
<input type='text' name='tesing1_qty' id='testing1_qty' class='inputtext' readonly=''>
</td>
</tr>
</table>
选中复选框后,我想启用文本框。
我使用了如下功能。
function testingFunction(checkboxStatus,checkboxValue){
if(checkboxStatus==true){
$("#"+checkboxValue+"_qty").attr('readonly', false);
}
}
但我收到语法错误。我不确定我哪里出错了。请帮助我。提前致谢