Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么这在 iPhone 上不起作用?
$(document).on('click', '.ui-state-default', function(e) { $(".upload").show(); });
我错过了什么吗?
我正在使用 iOS 6.1 和 jQuery 1.8.3
尝试这个:
$(document).on('click touchstart', '.ui-state-default', function(e) { $(".upload").show(); });
Click 有时在 iPad 等 iOS 设备上不起作用。在这种情况下,您需要使用touchstart,touchend或touchmove.
touchstart
touchend
touchmove