我有功能:
$(function () {
$('form').on('submit', function (e) {
$.ajax({
type: 'POST',
url: 'conf/send.php',
data: $('form').serialize(),
success: function () {
var form = document.getElementById("Form");
form.submit();
}
});
e.preventDefault();
});
});
在 FF、Chrome、Opera、IE 中运行良好。在 Safari 中不起作用。尝试添加:
async: false,
$.ajaxSetup({
type: 'POST',
headers: { "cache-control": "no-cache" }
});
$.ajaxPrefilter(function (options, originalOptions, jqXHR) {
options.data = jQuery.param($.extend(originalOptions.data||{}, {
timeStamp: new Date().getTime()
}));
});
这样做没有帮助吗?提前致谢