我想检测js中由chrome自动填充的字段。 以下将抛出异常
_isAutofilled: function () {
if (this.el.find(':-webkit-autofill').length > 0) {
return true;
}
return false;
},
错误:语法错误,无法识别的表达式:unsupported pseudo:-webkit-autofill
这将抛出:
$('input:-webkit-autofill')
是否有一种干净的方法可以防止jquery投掷,即使FF中不支持伪选择器?
我不想整合功能检测,我也不能使用try/catch
。
jQuery版本:2.2.4