gpt4 book ai didi

javascript - Html 包含 jQuery

转载 作者:行者123 更新时间:2023-12-02 18:43:55 25 4
gpt4 key购买 nike

嘿,我正在尝试找到一些 jQuery 代码,以允许我在我的网站中插入多个页面。我想做两个div。在第一个中,我想显示网站(包含所有网站选项,例如更改链接等...),在另一个中,我希望用户能够插入有关它的注释和其他一些内容...

这就是我正在做的事情:

<div id="div_top1" class="top">This is a paragraph.</div>

<div class="down"><button type="button" onclick="changediv()">Display Date</button></div>

<script>
function changediv()
{
document.getElementById("div_top1").innerHTML=Date();
document.getElementById("div_top1").setAttribute("id", "div_top2");
}
$("document").ready(function() {
$('#div_top2').load('helloworld.php');
});

</script>

我知道该函数已更改为 div_top2,我只是不明白为什么它不加载页面

最佳答案

在单击该按钮之前,您不会将 id 更改为 div_top2。并且您在 div_top2 上的 $(document).ready() 中有一个监听器。因此该页面未加载。

尝试将 $('#div_top2').load('helloworld.php'); 更改为 $('#div_top1').load('helloworld.php');

关于javascript - Html 包含 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16590782/

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