标签:pts add capture rop type dde 阻塞 使用 cap
var passiveEvent = false; try { var opts = Object.defineProperty({}, ‘passive‘, { get: function () { passiveEvent = true; } }); window.addEventListener("test", null, opts); } catch (e) { } // in my case I need both passive and capture set to true, change as you need it. passiveEvent = passiveEvent ? { capture: true, passive: true } : true; //if you need to handle mouse wheel scroll var supportedWheelEvent: string = "onwheel" in HTMLDivElement.prototype ? "wheel" : document.onmousewheel !== undefined ? "mousewheel" : "DOMMouseScroll";
使用:
elementRef.addEventListener("touchstart", handler, passiveEvent);
标签:pts add capture rop type dde 阻塞 使用 cap
原文地址:https://www.cnblogs.com/zzsdream/p/14101767.html