如果可以更改占位符的默认验证消息,我很感兴趣。
必须是一种制作自定义消息的方法。
我的表格:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HTML5 Placeholder</title>
</head>
<body>
<form>
<input type="text" id="email" maxlength="35" placeholder="E-mail" required>
<button type="submit">Ok</button>
</form>
</body>
</html>
我尝试过使用 JavaScript,但每次都会出现消息:
<script type="text/javascript">
document.getElementById('email').setCustomValidity('Please enter your e-mail!');
</script>