我在表单操作中添加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
属性也无效
请指导。
答案 0 :(得分:0)
按名称获取元素
document.getElementsByName('BOE_NO').disabled = true;
按ID获取元素
document.getElementsById('idOfBOE_NO').disabled = true;