html表单无法找到属性名称的setter方法

时间:2012-10-10 06:53:30

标签: javascript html jsp

我在表单操作中添加html form unable to find setter method for attribute name属性时收到错误name

<html:form action="updateBOEMedicalAccept" name="updateBOEMedicalAcceptForm">

我需要name属性才能在javascript

中使用它

document.updateBOEMedicalAcceptForm.BOE_NO.disabled = true;

id属性也无效

请指导。

1 个答案:

答案 0 :(得分:0)

按名称获取元素

document.getElementsByName('BOE_NO').disabled = true;

按ID获取元素

document.getElementsById('idOfBOE_NO').disabled = true;