浏览器通知文本更改

时间:2017-09-28 15:28:57

标签: javascript browser notifications cross-browser

我想更改浏览器发送的通知。 例如,如果我写的电子邮件地址没有“@”符号,我会收到通知:

铬:

enter image description here

火狐

enter image description here

有没有办法更改通知文本并为所有浏览器编写相同的文本?

2 个答案:

答案 0 :(得分:1)

您可以使用oninvalid="this.setCustomValidity('Your custom message here')设置您选择的自定义消息。

JsFiddle:https://jsfiddle.net/08ujt04s/

答案 1 :(得分:-1)

在元素

中使用title属性和模式
<input type='email' 
       required 
       title='Must be 6 - 12 characters in length'  
       pattern="[a-zA-Z0-9_-]{6,12}" 
       name='myEmail'>

有些人fiddle demo