删除 maxlength 属性
是否可以从元素中删除 maxlength 属性? 我认为将其设置为 0 会起作用,但 FF4 似乎会阻止输入任何内容。 http://jsfiddle.net/hMc4y/
我听说将其设置为 -1< /code> 确实会触发错误,并且
removeAttribute
也不起作用。
is it possible to remove a maxlength attribute from an element?
I thought that setting it to 0 would work, but it seems like FF4 then prevents entering anything. http://jsfiddle.net/hMc4y/
I've heard that setting it to -1
does trigger an error and removeAttribute
does not work either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用“removeAttribute('maxLength')”应该可以正常工作;也许令人惊讶的是属性名称必须是带有大写“L”的“
maxLength
”。考虑:Using "removeAttribute('maxLength')" should work fine; perhaps the surprise is that the attribute name must be "
maxLength
" with an uppercase "L". Consider:removeAttribute 在 Firefox 3.5 和 Chrome 中都适用。
removeAttribute works for me in both Firefox 3.5 and Chrome.