我们在项目中使用iScroll,其滚动区域中的某些元素附加了 mousedown 事件。
在最新版Google Chrome( 55.0.2883.95(64位))上,mousedown事件永远不会被触发,原因是IScroll注册了 pointerdown 事件。
周围有什么办法吗?我当然可以使用pointerdown而不是mousedown,但它在Safari中不受支持,因此我需要一些脏浏览器检查。
(function () {
var scroll = new IScroll('#scroller');
document.getElementById('testblock').addEventListener('mousedown', mousedownEventHandler);
function mousedownEventHandler(event) {
console.info(event.type, 'triggered.');
}
})();
body {
padding: 0;
margin: 0;
}
#scroller {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
#content {
height: 5000px;
background: white;
}
#testblock {
position: fixed;
top: 0;
width: 100px;
height: 100px;
line-height: 100px;
background: silver;
border: 1px solid black;
cursor: pointer;
text-align: center;
}
<script src="https://rawgit.com/cubiq/iscroll/master/build/iscroll-probe.js"></script>
<div id="scroller">
<div id="content">
<div id="testblock">Click me</div>
</div>
</div>
答案 0 :(得分:1)
您需要将click参数添加到选项对象。
var scroll = new IScroll('#scroller', {
click: true
});