我正在开发html5中的表单,我已经放置了必需的属性并自定义了工具提示。当我按下提交按钮时,会出现自定义工具提示,但是当我将鼠标悬停在该字段上时,除了自定义工具提示帖子提交尝试或仅提交默认消息之外,我还会看到默认消息“请填写此字段”。我喜欢翻译默认消息或抑制它。该行为是chrome独有的。任何帮助将不胜感激。
我尝试过使用setCustomValidity()onmouseover事件但是徒劳无功
此致
Yasir Munir
<html>
<head>
<script>
function validator(input) {
input.setCustomValidity('my custom message');
}
</script>
</head>
<body>
<form>
<input type="text" required onmouseover="validator(this)" oninput="validator(this)" />
<input type="submit" />
</form>
</body>
</html>