FE-placeholder IE 触发input事件
2019-11-08 本文已影响0人
ShineaSYR
IE L-lulu 使用问题记录
// IE10+下有个bug
// focus placeholder变化时候,会触发input事件,我只能呵呵了
if (document.msHidden != undefined && this.value == '' && !this.lastvalue && $(this).attr('placeholder')) {
this.lastvalue = this.value;
return;
}