gpt4 book ai didi

javascript - 如何更改加载到其他 html 的 body 标记内的 html 内容

转载 作者:行者123 更新时间:2023-12-01 02:44:41 26 4
gpt4 key购买 nike

我正在另一个html页面中加载一个html页面,比如说,home.htmlindex.html内部调用,但现在我想更改的一些内容>home.html 借助 index.html 内的 java 脚本或 jquery以下是我迄今为止尝试过的内容

index.html

   <html>
<body> </body>
</html>
<script>
$('body').load('home.html');
// below div **session_error** is from home.html page,I wanted to change its text on this page
$('#session_error').html("This is session out errror");

</script>

最佳答案

.load() 调用是异步的。因此您需要等待它完成后再进行更改。

类似于:

$('body').load('home.html', function() {
$('#session_error').html("This is session out errror");
});

关于javascript - 如何更改加载到其他 html 的 body 标记内的 html 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47323839/

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