gpt4 book ai didi

javascript - 在 HTML 文件中包含另一个 HTML 文件

转载 作者:bug小助手 更新时间:2023-10-28 10:53:35 26 4
gpt4 key购买 nike

我有 2 个 HTML 文件,假设 a.htmlb.html。在 a.html 我想包含 b.html.

在 JSF 中我可以这样做:

<ui:include src="b.xhtml" />

这意味着在 a.xhtml 文件中,我可以包含 b.xhtml

我们如何在 *.html 文件中做到这一点?

最佳答案

在我看来,最好的解决方案是使用 jQuery:

a.html:

<html> 
<head>
<script src="jquery.js"></script>
<script>
$(function(){
$("#includedContent").load("b.html");
});
</script>
</head>

<body>
<div id="includedContent"></div>
</body>
</html>

b.html:

<p>This is my include file</p>

这种方法是解决我的问题的简单而干净的方法。

jQuery .load() 文档是 here .

关于javascript - 在 HTML 文件中包含另一个 HTML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8988855/

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