标签:页面滑动 使用 click touch 手机 播放 元素 pre eve
1.touchend事件不能触发?
a.在touchstart中添加event.preventDefault(),该方法会阻止元素的默认事件,如<a>标签的超链接无法响应,但是click事件可以通过tap事件代替。
b.在touchmove中添加event.preventDefault(),该方法在touchstart的时候不会阻止默认事件,所以可以使用click和a标签的超链接
2.在iphone手机中无法触发iframe的播放按钮?
原因:translate3d会导致页面的焦点错误
方法:用translateX或translateY 方法代替,看你需要想那个方向滑动
标签:页面滑动 使用 click touch 手机 播放 元素 pre eve
原文地址:http://www.cnblogs.com/emmaBlogs/p/6058581.html