html 코드 모음

2021. 12. 17. 22:40코딩공부/html

유용해보이는 html코드들을 모아보기로 했다.

 

<input type="checkbox"> : 체크박스 만들기(체크했다 안했다 가능)

<input type="button" value="버튼이름"> : '버튼이름'의 버튼 만들기

<input type="button" value-="버튼이름" onclick="alert('경고')"> : '버튼이름'의 버튼을 누르면 경고 알림창이 뜸

<input type="text" onchange="alert('changed')"> : 텍스트를 입력했을때 내용이 변경되면 changed 경고창이 뜬다

<input type="text" onkeydown="alert('key down!')"> : 텍스트를 입력했을때 키가 눌리면 key down! 경고창이 뜬다