// solution
//The temporary fix is to run this code before you do any event binding via jQuery:
//临时的解决方案,将下面这段代码放到JQuery事件绑定之前
$(document).ready(function(){
$.event.props = $.event.props.join('|').replace('layerX|layerY|', '').split('|');
....
});
event.layerX and event.layerY are broken and deprecated in WebKit. They will be
最新推荐文章于 2020-04-28 17:26:50 发布
本文提供了一个在使用jQuery进行事件绑定前运行特定代码的临时解决方案,包括修改$.event.props变量的方法。
140

被折叠的 条评论
为什么被折叠?



