我想使用Ajax / jquery能够重定向到另一个php脚本以在脚本中执行命令。
下面我有一个jquery / ajax代码函数,我的问题是jquery.ajax函数是否正确才能重定向到“cancelimage.php”脚本?
$(imageuploadform).find(".imageCancel").on("click", function(event) {
$('.upload_target_image').get(0).contentwindow
$("iframe[name='upload_target_image']").attr("src", "javascript:'<html></html>'");
jQuery.ajax("cancelimage.php");
return stopImageUpload(2);
});
答案 0 :(得分:0)
我不确定这是你想要的,但是要完全重定向
Window.location.href='cancelimage.php'
但是如果您从代码中寻找ajax成功/失败类型响应
$.ajax{(
url:'cancelimage.php',
data: 'yourData', //either serialized from form submit or created on the fly
Success: function(yourResponse){ //if Conditions met
},
Error: function(request){ alert(request.responseText);}
)};
然后更新你的cancelimage.php脚本以返回布尔值true / false,使用json_encode或任何你喜欢的JSON对象