0

次のようなフォームアクションに属性html form unable to find setter method for attribute nameを追加するとエラーが発生しますname

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

namejavascriptで使用するには属性が必要です

お気に入り

document.updateBOEMedicalAcceptForm.BOE_NO.disabled = true;

id属性も機能していません

ご案内ください。

4

1 に答える 1

0

名前で要素を取得するには、

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

IDで要素を取得する場合

document.getElementsById('idOfBOE_NO').disabled = true;
于 2012-10-10T06:55:48.100 に答える