解决办法是使用 touchstart 替换 click
var user_agent = navigator.userAgent.toLowerCase();var ios_devices = user_agent.match(/(iphone|ipod|ipad)/) ? "touchstart" : "click";$(document).on(ios_devices,"button",function() { });