글은 부트스트랩에서 Form-control ( Html input object )에 대한 글입니다.
웹 페이지를 작성하면 데이터를 입력, 선택하는 오브젝트로 Input object를 가장 많이 사용할 것입니다.
Input Object의 기본 종류로는 TextBox, Checkbox, Radio, Button등이 있습니다.
타입형태태그
텍스트 박스 | <input type="text"> | |
체크 박스 | <input type="checkbox"> | |
라디오 | <input type="radio"> | |
버튼 | button | <button>button</button> |
셀렉트 | option | <select><option>option</option><option></option></select> |
프로그래스 | <progress></progress> | |
파일 업로드 | <input type="file"> | |
텍스트 에리어 | <textarea></textarea> | |
패스워드 | <input type="password"> | |
컬러 | <input type="color"> | |
날짜 | <input type="date"> | |
시간 | <input type="datetime"> | |
메일 | <input type="email"> | |
이미지 | <input type="image"> | |
월 | <input type="month"> | |
숫자 | <input type="number"> | |
범위 | <input type="range"> | |
초기화 | <input type="reset"> | |
검색 | <input type="search"> | |
시간 | <input type="time"> | |
주 | <input type="week"> | |
url | <input type="url"> | |
datetime-local | <input type="datetime-local"> |
링크 - https://www.w3schools.com/jsref/dom_obj_text.asp
출처: https://nowonbun.tistory.com/526 [명월 일지]