FE-placeholder IE 触发input事件

IE L-lulu 使用问题记录

// IE10+下有个bug
// focus placeholder变化时候,会触发input事件,我只能呵呵了
if (document.msHidden != undefined && this.value == '' && !this.lastvalue && $(this).attr('placeholder')) {
  this.lastvalue = this.value;
  return;
}

你可能感兴趣的:(FE-placeholder IE 触发input事件)