在本地脚本上进行 AJAX 调用以使用 POST 更新 dbase。错误报告并没有给我太多继续。适用于 IE、Chrome 和 FF,但不适用于 Safari 6。其他 JQuery 功能正在 Safari 中运行,Firebug DOM 选项卡显示 JQuery 具有。这是 AJAX 代码块。
$.ajax({
type: "POST",
url: "updatead3.php",
data: {pos_data: dd_elm}, //index array created earlier
contentType: 'application/x-www-form-urlencoded; charset=UTF-8'
}).done (function(data) {
if(console && console.log) {
console.log("AJAX success: " + data);
}
}).fail(function(obj,status,error) {
alert("AJAX Error:" + obj.error);
});
alert("Changes were saved!");
location.reload();
)};
)}:
在 Firebug 脚本选项卡 > 检查 jquery-1.9.1.js 菜单选项下,正在显示“拒绝访问受限 URI”。但如果这是一个跨域问题,我不会期望任何 JQuery 功能。提前致谢