微信公众号开发在iphone微信中好多按钮无法点击
当时搜了很多方法,不管是加cursor: pointer;或者是更换点击事件,都没有用
解决办法:给绑定两个事件 click touchstart
$(document).on('click touchstart', function(e) {
});
微信公众号开发在iphone微信中好多按钮无法点击
当时搜了很多方法,不管是加cursor: pointer;或者是更换点击事件,都没有用
解决办法:给绑定两个事件 click touchstart
$(document).on('click touchstart', function(e) {
});