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的已知错误吗?