1

我有一个使用 PHP/MySQL 结果创建的表,http://www.fsma.co.uk/help/table.jpg

当用户单击重新发送确认按钮时,我有一个运行 PHP 脚本的 jQuery 脚本来向该客户发送电子邮件。

我需要的是该按钮然后更改为文本并从 PHPscript 提供返回的消息,或者在下面添加一个新行以显示返回的消息。

我让它工作,但无论您单击哪个按钮,它都使用同一行。但是,由于玩弄了很多想法,我不再拥有该代码。

4

1 回答 1

1

像这样的东西:

$(".buttonClass").click(function(event) {
    event.preventDefault();
    $.post(url, data, function(response) {
        // hide the clicked button
        $(this).hide(); 

        // insert content from the called php function after the button
        $(this).after(response);
    });
});

您的 php 函数必须回显您要显示的内容,而不是按钮。

于 2013-02-01T15:38:34.827 回答