web developer๐Ÿ‘ฉ๐Ÿป‍๐Ÿ’ป

[html] input tag basic Attribute ๋ณธ๋ฌธ

Basic

[html] input tag basic Attribute

natrue 2021. 4. 15. 17:53
728x90

 input : ์‚ฌ์šฉ์ž๋กœ๋ถ€ํ„ฐ ์ •๋ณด๋ฅผ ์ž…๋ ฅ๋ฐ›์„ ์ˆ˜ ์žˆ๋Š” tag 

id  id๊ฐ’   <input id="id"/>
class  class๊ฐ’  <input class="class"/>
name  ์„œ๋ฒ„๋กœ ์ „๋‹ฌ๋˜๋Š” ์ด๋ฆ„ ์„ค์ •ํ•˜๋Š” ์†์„ฑ  <input name="name"/>
value  ์ž…๋ ฅํƒœ๊ทธ์˜ ์ดˆ๊ธฐ๊ฐ’์„ ์„ค์ •ํ•˜๋Š” ์†์„ฑ  <input value="value๊ฐ’"/>
type  ์ž…๋ ฅํƒœ๊ทธ์˜ ์œ ํ˜•์„ ์„ค์ • ํ•˜๋Š” ์†์„ฑ  <input   type="text,hidden,password,radio,checkbox....."/>
min  ์ตœ์†Œ์ˆ˜์น˜  <input min="11"/>
max  ์ตœ๋Œ€์ˆ˜์น˜  <input max="25"/>
step  ๋ฐ”๋€Œ๋Š” ์ˆ˜์˜ ํฌ๊ธฐ, ๋‹จ์œ„   <input step="5"/>
autofocus  ์ปค์„œ ์ž๋™ ํ‘œ์‹œ  <input autofocus/>
placeholder  ๊ธฐ๋ณธ์ ์œผ๋กœ ์“ฐ์—ฌ์ ธ ์žˆ๋Š” ์•ˆ๋‚ด๊ธ€   <input placeholder="placeholder"/>
readonly  ์ฝ๊ธฐ๋งŒ ๊ฐ€๋Šฅ  <input readonly/>
required  ์•„๋ฌด๊ฒƒ๋„ ์ž…๋ ฅ ์•ˆํ•˜๋Š” ์ƒํƒœ ๋ฐฉ์ง€
 (ํ•„์ˆ˜ ๊ฐ’ ์ฒดํฌ) 
 <input required/>
maxlength  ์ž…๋ ฅ๋˜๋Š” ๋ฌธ์ž์˜ ์ตœ๋Œ€ ๊ธธ์ด ์ œํ•œ  <input maxlength="12"/>
minlength  ์ž…๋ ฅ๋˜๋Š” ๋ฌธ์ž์˜ ์ตœ์†Œ ๊ธธ์ด ์ œํ•œ  <input minlength="11"/>

 

 

 

 

 

 

 

 

 

 

 

์ฐธ๊ณ  : m.blog.naver.com/PostView.nhn?blogId=govlrhaehfdl&logNo=221230214889&proxyReferer=https:%2F%2Fwww.google.com%2F