HTML | HTML5 Input Type 종류
2020.01.13
HTML5 Input TypesInput Type: number 는 숫자 값을 포함해야 하는 입력필드에 사용됩니다. 숫자에 한계를 설정할 수 있습니다.브라우저의 지원에 따라서, 한계를 입력 필드에 표시될 수도 있다.Example Quantity (between 1 and 5): Try it Yourself »Input 제한(Restrictions)일반적인 input 제한(restrictions)은 다음과 같다. (some are new in HTML5):AttributeDescriptiondisabledSpecifies that an input field should be disabledmaxSpecifies the maximum value for an input fieldmaxlengthSpecifie..