gpt4 book ai didi

mootools - 核心 1.5.1 在更新到最新的 chrome 后对 IE 输入类型的电子邮件检查发出警告

转载 作者:行者123 更新时间:2023-12-04 18:39:47 26 4
gpt4 key购买 nike

由于升级到 Chrome 41.0.2272.89 m,Mootools Core 1.5.1 发出警告。没什么大不了的,但如果你像我一样固执己见,那可能会让你有点厌烦。

var input = document.createElement('input'), volatileInputValue, html5InputSupport;

// #2178
input.value = 't';
input.type = 'submit';
volatileInputValue = input.value != 't';

// #2443 - IE throws "Invalid Argument" when trying to use html5 input types
try {
input.type = 'email';
html5InputSupport = input.type == 'email';
} catch(e){}

抛出警告:

The specified value 't' is not a valid email address.

最佳答案

要修复,请将上面的 try catch 更改为:

try {
input.value = '';
input.type = 'email';
html5InputSupport = input.type == 'email';
} catch(e){}

或者在压缩版本中,搜索“电子邮件”并更改:
try{p.type="email",h="email"==p.type}catch(c){}

到:
try{p.value="",p.type="email",h="email"==p.type}catch(c){}

关于mootools - 核心 1.5.1 在更新到最新的 chrome 后对 IE 输入类型的电子邮件检查发出警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29074591/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com