Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚发现 Chrome 似乎对 html 中的输入字段有一个默认的 maxlength 设置。我只能插入一个长度为 8649 的字符串。
有没有办法增加这个最大长度?
根据我的测试,Chrome 没有默认值maxlength,我可以在一个字段中输入 10,000 个字符input(在 Chrome 20 beta 上,Win 7 上)。您可能已经使用 GET 方法对实际的表单提交进行了测试,在这种情况下,表单数据的总长度可能存在依赖于浏览器和服务器的限制。
maxlength
input
在 Chrome 上检查 DOM,一个input元素没有默认值maxlength,但它有maxLength,值为 524288。
maxLength