IOS5和Safari 5用于Windows AJAX POST请求问题

时间:2014-09-24 18:22:16

标签: jquery ajax ios5 safari

function updateTemplate()
{   

    var data = $("#create_template").serialize();


     $.ajax({

        type: "POST",
        url: "ajax/show_config.php",
        async: true,
        cache: true,
        data: data,
        success: function(data){
            $("#current_config").html(data);
        }

      });

}

此功能适用于我在Android或Windows中拥有的所有浏览器,但Safari 5 for Windows和某些IOS版本除外。

似乎请求未提交给PHP脚本,而显示更新数据。

是Apple Products和AJAX的已知错误吗?

0 个答案:

没有答案