我一直在尝试使用$ .ajax函数将JS变量发布到PHP中。虽然它没有工作。情况是这样的:有一个带有提交按钮的页面,如果单击该按钮,它将加载一个JS函数,其中包含confirm()。如果我单击OK(如果确认为true),它应该在另一个php页面上执行post操作。
function sure () {
var conf = confirm(text here);
$.ajax({
url: 'action.php',
type: Post
data: {istrue: conf};
})
。 }
答案 0 :(得分:1)
它与jQuery相关而不是JavaScript。
type
中没有$.ajax
个参数。你必须使用method
param。
$.ajax({
method: "POST",
url: 'action.php',
data: {istrue: conf}
})