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(); });
iPad などの iOS デバイスでは、クリックが機能しない場合があります。そのような場合はtouchstart、touchendまたはを使用する必要がありますtouchmove。
touchstart
touchend
touchmove