HTML DOM 입력 제출 값 속성은 type=”submit” 및 value 속성이 있는 입력 요소와 연결됩니다. 제출 버튼 값 속성의 값을 반환하거나 설정하는 데 사용됩니다. 제출 버튼의 값 속성은 기본적으로 "제출" 텍스트이므로 버튼에 표시되는 텍스트를 변경합니다.
구문
다음은 −
의 구문입니다.값 속성 설정 -
submitObject.value = text;
여기에서 텍스트는 제출 버튼에 표시되는 텍스트를 지정하는 데 사용됩니다.
예시
입력 제출 값 속성에 대한 예를 살펴보겠습니다. -
<!DOCTYPE html> <html> <body> <h1>Input submit Value property</h1> <form style="border:solid 2px green;padding:2px"> UserName: <input type="text" id="USR"> <br> Location: <input type="text" id="Loc"> <br><br> <input type="submit" id="SUBMIT1"> </form> <p>Change the above element value by clicking the below button</p> <button onclick="changeValue()">CHANGE</button> <p id="Sample"></p> <script> function changeValue() { document.getElementById("SUBMIT1").value="Form_Submit"; document.getElementById("Sample").innerHTML="The submit button value is changed and the value can be seen on the button itself"; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
CHANGE 버튼을 클릭하면 -