2015. 10. 21. 11:14 IT/html_css
HTML5 Input Type: Number
Number 필드는 이름에서 볼 수 있듯이 숫자 입력을 편하게 하기 위해서 제안된 태크 입니다. 다른 웹 폼들도 대부분 그러하지만 Number 도 모바일 같이 입력이 제한된 환경에서 유용하게 사용됩니다.
<input id="age" type="number" value="0"/>
숫자를 입력하기 위해서 제안된 용도에 맞게 이 항목을 선택하게 되면 모바일 환경과 같이 입력기가 별도로 뜰 때에는 숫자를 입력하기 위한 용도의 입력기가 나타 납니다.
Number는 단순히 숫자 입력을 요구하기 위한 용도로 사용되지는 않습니다. 숫자 이외에 다른 문제는 입력을 거부하거나 지정된 범위를 벗어나는 숫자의 입력을 거부하는 용도로도 활용 될 수 있습니다.
value : Value is the default value of the input box when a page is first loaded. This is a common attribute for <input> element regardless which type you are using.
min : Obviously, the minimum value you of the number. I should have specified minimum value to 0 for my demo up there as a negative number doesn't make sense for number of movie watched in a week.
max : Apprently, this represents the biggest number of the number input.
step : Step scale factor, default value is 1 if this attribute is not specified.
일반적인 데스크탑 환경에서는 Chrome, Opera에서 Number 태그가 사용 가능합니다. Number 객체 옆에는 숫자를 올리거나 내일 수 있는 버튼이 함께 붙어 있습니다. Step 속성은 숫자를 높이거나 낮출 때 사용하는 버튼을 눌렀을 때 증가 혹은 감소되는 양을 지정하기 위한 속성입니다.
Browsers Render "Number" input as Spinner
IE 9
Firefox 4
Safari 5 ✓ (in Mac OS, but not Windows)
Chrome 8 ✓
Opera 11 ✓
Java Script에서 Number 객체를 활용 할 때에는 stepUp(), steopDown(), valueAsNumber 등의 속성을 사용할 수 있습니다.
spinner.stepUp(x) - x being the value you want to increase in the field.
spinner.stepDown(x) - x being the value you want to decrease in the field.
spinner.valueAsNumber - return value of input as floating point number instead of string.
하지만 역시 웹 폼의 기능들은 모바일 환경에서 제일 유용합니다.
'IT > html_css' 카테고리의 다른 글
우클릭 막기. 드래그 막기. (0) | 2018.01.30 |
---|---|
java json 크로스 도메인(Crossdomain) 우회하기. (0) | 2016.12.26 |
모바일 Tag. accept, capture. (0) | 2015.06.16 |
href not working with float. float를 썼는데 href 동작하지 않을 때.. (0) | 2015.06.02 |
iframe 문제점. (0) | 2015.05.21 |