小编Ecl*_*tic的帖子

核心1.5.1在更新到最新的Chrome后,对IE输入类型电子邮件检查引发警告

自升级到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){}
Run Code Online (Sandbox Code Playgroud)

抛出警告:

指定值"t"不是有效的电子邮件地址.

mootools google-chrome-devtools

5
推荐指数
1
解决办法
1357
查看次数

标签 统计

google-chrome-devtools ×1

mootools ×1