mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(touch-emulator): 支持白名单排除 (#8984)
This commit is contained in:
parent
2a74d88c91
commit
f595755484
@ -51,6 +51,19 @@
|
||||
};
|
||||
}
|
||||
|
||||
if (!Element.prototype.closest) {
|
||||
Element.prototype.closest = function (s) {
|
||||
var el = this;
|
||||
|
||||
do {
|
||||
if (el.matches(s)) return el;
|
||||
el = el.parentElement || el.parentNode;
|
||||
} while (el !== null && el.nodeType === 1);
|
||||
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* create an touch point
|
||||
* @constructor
|
||||
@ -130,7 +143,9 @@
|
||||
eventTarget = ev.target;
|
||||
}
|
||||
|
||||
triggerTouch(touchType, ev);
|
||||
if (eventTarget.closest('[data-no-touch-simulate]') == null) {
|
||||
triggerTouch(touchType, ev);
|
||||
}
|
||||
|
||||
// reset
|
||||
if (ev.type === 'mouseup') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user