删除 maxlength 属性

发布于 2024-10-23 21:58:30 字数 245 浏览 1 评论 0原文

是否可以从元素中删除 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷︶言冷语的世界 2024-10-30 21:58:30

使用“removeAttribute('maxLength')”应该可以正常工作;也许令人惊讶的是属性名称必须是带有大写“L”的“maxLength”。考虑:

<form name="f">
  <input name="t" type="text" maxlength="5"/>
</form>
<script type="text/javascript">
  var t = document.f.t;
  alert(t.maxLength); // 5
  t.removeAttribute('maxLength');
  alert(t.maxLength); // 524288 (on Chrome/10.0.648.134)
</script>

Using "removeAttribute('maxLength')" should work fine; perhaps the surprise is that the attribute name must be "maxLength" with an uppercase "L". Consider:

<form name="f">
  <input name="t" type="text" maxlength="5"/>
</form>
<script type="text/javascript">
  var t = document.f.t;
  alert(t.maxLength); // 5
  t.removeAttribute('maxLength');
  alert(t.maxLength); // 524288 (on Chrome/10.0.648.134)
</script>
最丧也最甜 2024-10-30 21:58:30

removeAttribute 在 Firefox 3.5 和 Chrome 中都适用。

removeAttribute works for me in both Firefox 3.5 and Chrome.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文