JavaScript 参考手册
Input Text maxLength 属性
获取文本域允许输入的最大字符数
源代码:
点击运行 »
姓名: <input type="text" id="myText" maxlength="30"> <p>点击按钮显示文本域 maxlength 属性的值。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myText").maxLength; document.getElementById("demo").innerHTML = x; } </script>
运行结果:
点击运行 »