jquery 按钮在 iPhone 或 iPad 上突然不起作用

jquery button suddenly not working on iPhone or iPad

我已经尝试了我找到的所有建议,但无法使此按钮在 iPhone 或 iPad 上工作。几个月前还可以,现在不行了。这对个人电脑来说很好。试过touchstart,还有cursor:pointer;已经在 CSS,运气不好。还有其他想法吗?放轻松...我实际上不是程序员。

HTML 是:

echo '<td><span style="color:#fff;"  thing1="'.$thing1Id.'"  thing2="'.$row['thing2Id'].'" user="'.$user->ID.'" class="runScript btn" >Run!</span></td></tr>';


jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(".runScript").on("click",function(){
    var me = jQuery(this);
    var thing1= me.attr("thing1");
    var thing2= me.attr("thing2");
    var user = me.attr("user");
    me.html("Working on it! Please wait!");
    jQuery.ajax({
      url: "/runScript?thing1=" + me.attr('thing1') + "&thing2=" + me.attr('thing2') + "&user=" + me.attr('user') 
    }).done(function(data) {
        me.html("Done!");
        console.log(data);
    });

试一试:

jQuery(document).on("click", ".runScript", function() {

});