1

祝大家好日子,

整天都在寻找如何做到这一点。我想要的是让每一次“点击”进入一个 php 文件并确定要执行的操作。

itemAction.php

    include 'inc/database.php';
    include 'inc/functions.php';

    if ($_GET['action'] == 'delete') {
        // do delete action <-- this one is working
    } else if ($_GET['action'] == 'edit') {
        // do edit action; NOW HERE I WANT TO REDIRECT TO ANOTHER PAGE
        header("location: edit.php"); // I can't do something like this. Why?
    }

html

<div class="action">    
    <a id="delete" href="itemAction.php" rel="<!--some_id-->"><img src="images/trash.ico" alt="delete"></a>
    <a id="edit" href="itemAction.php" rel="<!--some_id-->"><img src="images/Pencil-icon.png" alt="edit"></a>
</div>

js

$("div.action a#delete").click(function (e) {
    var decision = confirm("Are you sure you want to delete the item?");
    if (decision) {
        e.preventDefault();
        $.get('itemAction.php', {action : 'delete', id : $(this).attr("rel")}, function (data) {            
            location.reload();
            alert("Succssfully deleted!");
        });
    }
    return false;
});

$("div.action a#edit").click(function (e) {
    e.preventDefault();
    $.get('itemAction.php', {action : 'edit', id : $(this).attr("rel")});
});

删除操作似乎正在工作..但我不能在编辑操作中做我想要重定向到其他页面的操作。有什么更好的方法可以做到这一点?任何帮助将非常感激。谢谢

4

2 回答 2

2

您不能这样做,因为 ajax 只会向您发送响应 html、文本、xml 或 json 响应,但不能进行重定向。

对于重定向,您必须返回任何内容"redirectme.",并且根据该响应,您需要在 javascript 中添加代码以重定向到所需位置。

你能做的是?

在 php 文件中添加以下代码,

echo json_encode(array('status' => 'edit', 'url' => 'edit.php'));

根据上述回复修改您$.get response callback的如下。

$.get('itemAction.php', {action : 'delete', id : $(this).attr("rel")},
   function (data)
   {
     if(response.status == 'edit'){
       window.location = response.url;
     }
});

它只是您需要根据需要设置的指导线。

评论回复

如果 js 被禁用,那么您需要相应地编码。

首先,您需要修改您的 html 链接,如下所示,

<a id="delete" href="itemAction.php?action=delete&id=someid"
<a id="edit" href="itemAction.php?action=edit&id=someid"

并通过点击上面的链接使用他们的 href 属性传递$.get如下。

$.get( $(this).href()

通过这样做,js被禁用,你的代码也可以工作。

于 2013-09-19T04:39:47.497 回答
0

让你的按钮去某个地方

<form method="get" action="someScript.php">
    <button>Do things</button>
</form>

然后在someScript.php

<?php

// do things

header("Location: redirectToHere.php");
于 2013-09-19T05:35:18.430 回答