在另一个页面(同一域)中更新DIV内容

时间:2019-06-21 14:23:45

标签: jquery

运行一个php页面(PageA),该页面接收来自第三方的信息。页面上的代码确定重要内容等。如果此页面随后需要动态更新第二页(PageB)上的相关内容的div(同一域中的用户可以查看),那么如何最好地使用jquery.append来做这个吗?

问题是我现在需要在PageB上使用什么代码来动态接收和更新DIV(不写入数据库,仅在页面显示在用户屏幕上时可见?

感谢您的见解!

PageA正在将信息发送到PageB

data = {'action': 'message', 'status': status, 'date': date}; 

`

$.ajax({
        cache:false,
        type: 'post',
        url: 'PageB.php',
        datatype: 'json',
        data: data,
        success: function(data) {
            console.log("Data Send");
            $('#tester').append(data);
            }
    });

PageB正在接收帖子:

if(!empty($_POST) && !empty($_POST['action'])) {
        // Call the function which gets and displays the thumbnails
        if ($_POST['action'] == 'message') {
            code?
        }
    }

1 个答案:

答案 0 :(得分:0)

您可以使用html()而不是append()来用新内容替换内容

$('#tester').html(data);