What is the default maximum length of html input fields in a form and text area? is it limited at all?
相关问题
- Adding a timeout to a render function in ReactJS
-
Why does the box-shadow property not apply to a
- Add animation to jQuery function Interval
- jQuery hover to slide?
- Issue with star rating css
When there is no max length specified the default is an unlimited number of characters for both textarea and text input.
From the MDN web docs for textarea,
for text input
If no
maxlength
attribute is specified, then there is no limit to how much text a user can enter. This is the same for a text input or a textarea.