编辑下面的代码:【加编码】
<html> <body> Homepage: <input type="url" id="myURL"> <p>点击按钮设置 URL 字段允许输入的最大字符数。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myURL").maxLength = "8"; document.getElementById("demo").innerHTML = "现在 url 字段允许输入的最大字符数为 8。"; } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂