x
 
<!DOCTYPE html>
<html>
<body>
电子邮件:<input type="email" id="myEmail">
<p>单击该按钮可设置电子邮件字段中允许的最大字符数。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  document.getElementById("myEmail").maxLength = "8";
  document.getElementById("demo").innerHTML = "电子邮件字段中允许的最大字符数现在为 8。";
}
</script>
</body>
</html>