..

Search

type="button"

<input type=“button”>


HTML <input> 태그 ⇒

<input> 태그의 type 속성 ⇒


정의 및 특징

<input type=“button”>은 주로 자바스크립트와 함께 스크립트를 활성화시키기 위해 사용되는 클릭할 수 있는 버튼을 정의합니다.


문법

<input type="button">


예제
<form action="/examples/media/action_target.php" method="get">
    <input type="button" value="클릭하세요!" onclick="popmsg()">
</form>

<script>
    function popmsg() { alert("자바스크립트가 실행되었습니다!"); }
</script>

코딩연습 ▶


지원하는 브라우저 및 버전

속성명

chrome

edge

ie

firefox

safari

opera

type="button" 1.0 지원함 지원함 1.0 1.0 지원함

연습문제