0

我想使用 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);
});​  
4

1 回答 1

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 对象或任何你喜欢的东西

于 2012-10-23T00:05:31.703 回答