gpt4 book ai didi

javascript - 如何获取大div的html

转载 作者:行者123 更新时间:2023-12-03 06:41:58 24 4
gpt4 key购买 nike

我有一个包含很多内容的 div。我想在该 div 的内容发生变化时显示警报(该 div 每 60 秒刷新一次)。我尝试了 $("div#divName").html() 但它不起作用,因为 div 内容很大。那么我该怎么办?

var $container = $("#load-scores");
$container.load("/include/home.php?ust=" + url_site + "&tz=" + tz);
var s= $("#load-scores").html();
var refreshId = setInterval(function()
{
$container.load("/include/home.php?ust=" + url_site + "&tz=" + tz);
var p = $('#load-scores').html();
if(p.is(s))
alert("changed");
}, refresh_time);
PS:console.log(p) 和 console.log(s) 返回空

最佳答案

您可以使用 jquery 的 load() 作为函数。

var $container = $("#load-scores");
$container.load("/include/home.php?ust=" + url_site + "&tz=" + tz, function(){
alert("Changed");
});
var refreshId = setInterval(function()
{
$container.load("/include/home.php?ust=" + url_site + "&tz=" + tz, function(){
alert("Changed");
});

}, refresh_time);

关于javascript - 如何获取大div的html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37914603/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com