2020. 9. 17. 00:02ใ์ ๊ณต ๊ณผ๋ชฉ/์น ํ๋ก๊ทธ๋๋ฐ
์น ํ๋ก๊ทธ๋๋ฐ - form
์ค๋์ form์ ๋ํด์ ์์๋ณด์.
form์ด๋ ๋ฌด์์ผ๊น?
form์ ์น ํ์ด์ง๋ฅผ ๋ง๋ค ๋ ํ์๊ฐ์ ์ด๋ ์ฌ์ฉ์์๊ฒ ์ ๋ณด๋ฅผ ์ ๋ ฅ๋ฐ๋ ํ์ด์ง๋ฅผ ๋ง๋ค๋ ํ์์ ์ผ๋ก ์ฐ์ด๋ ๋งค์ฐ ์ค์ํ ํ๊ทธ์ด๋ค.
๋ฐ๋ก ์ค์ ์ผ๋ก ๋์ด๊ฐ๋ณด์.
ํ ์คํธ์ ๋ํ ํ๊ทธ : input type = "text"
๋น๋ฐ๋ฒํธ์ ๋ํ ํ๊ทธ : input type = "password"
์ฒดํฌ๋ฐ์ค์ ๋ํ ํ๊ทธ : input type = "checkbox"
radio์ ๋ํ ํ๊ทธ : input type = "radio"
select์ ๋ํ ํ๊ทธ : input type = "select"
textarea์ ๋ํ ํ๊ทธ : input type = "textarea"
์ ์ถ์ ๋ํ ํ๊ทธ : input type = "submit"
์ทจ์์ ๋ํ ํ๊ทธ : input type = "reset"
๊ฐ๋ ์ ์ด๋ ๋ค. ์๋์ ๊ฐ์ ํ๋ฉด์ ์ฝ๋๋ก ์์ฑํด๋ณด์.
์์ค ์ฝ๋
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form method = "get" name = "form1" action = "">
์ด๋ฆ:<input type = "text" id = "name" value = "๋น์ ์ ์ด๋ฆ์?"><br>
๋น๋ฐ๋ฒํธ: <input type = "password" id = "pwd"><br>
์ข์ํ๋ ๊ณผ๋ชฉ ์ ํ <input type = "checkbox" id = "subject">๊ตญ์ด
<input type = "checkbox" id = "subject">์์ด
<input type = "checkbox" id = "subject">์ํ
<input type = "checkbox" id = "subject">์ญ์ฌ
<input type = "checkbox" id = "subject">์ง๋ฆฌ<br>
<input type = "radio" id = "subject2">Korean
<input type = "radio" id = "subject2">English
<input type = "radio" id = "subject2">Math
<input type = "radio" id = "subject2">History
<input type = "radio" id = "subject2">Geographic<br>
<select name = "city" size ="5" multiple>
<option>์์ธ</option>
<option checked>๋ถ์ฐ</option>
<option checked>๋๊ตฌ</option>
<option>์ ์ฃผ</option>
<option>๊ด์ฃผ</option>
</select>
์๊ธฐ์๊ฐ์<br>
<textarea name = "city" cols = "20" rows = "10">
</textarea><br>
<input type = "submit" value = "์ ์ถ"><input type = "reset" value = "์ทจ์">
</form>
</body>
</html>
textarea์ select๋ input type์ผ๋ก ์ฃผ์ง์๊ณ ๋ฐ๋ก ํ๊ทธ๋ฅผ ์ฃผ๋ฉด ๋๋ค.
๊ทธ๋ฆฌ๊ณ select์์ ๋ค์ค์ผ๋ก ์ ํํ๊ธฐ ์ํด์๋ multiple์ ์ฃผ์ด์ผ ํ๋ค.
'์ ๊ณต ๊ณผ๋ชฉ > ์น ํ๋ก๊ทธ๋๋ฐ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
์น ํ๋ก๊ทธ๋๋ฐ - DOM-2 (0) | 2020.09.17 |
---|---|
์น ํ๋ก๊ทธ๋๋ฐ - dom (0) | 2020.09.17 |
์น ํ๋ก๊ทธ๋๋ฐ - form์ ์์ฉ (0) | 2020.09.17 |
์น ํ๋ก๊ทธ๋๋ฐ- ํฉํ ๋ฆฌ์ผ, ๊ณผ์ ๊ตฌ๋งคํ๊ธฐ (0) | 2020.09.05 |
์น ํ๋ก๊ทธ๋๋ฐ -ํจ์, ๊ตฌ๊ตฌ๋จ ์ถ๋ ฅํ๊ธฐ (2) | 2020.09.05 |