|
|
@ -74,7 +74,8 @@ BI.Input = BI.inherit(BI.Single, { |
|
|
|
.focus(function (e) { // 可以不用冒泡
|
|
|
|
.focus(function (e) { // 可以不用冒泡
|
|
|
|
self._focusDebounce(); |
|
|
|
self._focusDebounce(); |
|
|
|
}) |
|
|
|
}) |
|
|
|
.focusout(function (e) { |
|
|
|
.blur(function (e) { |
|
|
|
|
|
|
|
// DEC-14919 IE11在浏览器重新获得焦点之后会先触发focusout再触发focus,要保持先获得焦点再失去焦点的顺序不变,因此采用blur
|
|
|
|
self._blurDebounce(); |
|
|
|
self._blurDebounce(); |
|
|
|
}); |
|
|
|
}); |
|
|
|
if (BI.isKey(this.options.value) || BI.isEmptyString(this.options.value)) { |
|
|
|
if (BI.isKey(this.options.value) || BI.isEmptyString(this.options.value)) { |
|
|
|