728x90
λ°μν
HTML <button> νκ·Έ - νΌ μμ
HTML <button> νκ·Έ
- button μμλ μ¬μ©μκ° λλ₯Ό μ μλ λ²νΌμ λλ€.
↓ λ²νΌ νκ·Έμ κΈ°λ³Έ νν
<button>~</button>
buttonμμ μμ£Ό μ°λ μμ±
→ type, name, autofocus, onclick
- type : μ λ ₯ νκ·Έμ μ νμ κ²°μ νλ μμ±
- name : μλ²λ‘ μ λ¬λλ μ΄λ¦μ μμ± (β»μ¬μ©μκ° μμ μ§μ ν©λλ€.)
- autofocus : μΉ νμ΄μ§κ° λ‘λ(load)λ λ, ν¬μ»€μ€κ° λλ μμ±
- onclick : λ²νΌμ΄ ν΄λ¦λμμ λ λ°μλλ μ΄λ²€νΈμ μμ±
[μμ ]
<button type="button" name="button" aufofocus onclick="alert('νμ
μ°½')">onclick</button>
[μ€ννλ©΄]
[ λ²νΌ νκ·Έμ μμ£Ό μ¬μ©νλ μμ±λ€ ]
typeμ μμ±κ°
→ button, submit, reset
- button : ν΄λ¦ν μ μλ λ²νΌ νμ .
- submit : λ°μ΄ν°λ₯Ό μ μΆ, μ μ‘νλ€λ λ²νΌ νμ .
- reset : μ΄κΈ°κ°μΌλ‘ 리μ νλ€λ λ²νΌ νμ .
[μμ ]
<button type="button" name="check_button" autofocus>μ€λ³΅νμΈ</button>
<button type="submit" name="sava_button" autofocus>μ μ₯νκΈ°</button>
<button type="reset" name="reset_button" autofocus>λ€μμ°κΈ°</button>
[ μ€ννλ©΄ ]
[ onclickλ₯Ό μ¬μ©ν΄ νμ΄μ§ 맨 μλ‘κ°κΈ° ]
[μμ ]
<button onclick="window.location.href='#top'">μλ‘κ°κΈ°</button>
[ μ€ννλ©΄ ]
728x90
λ°μν