gpt4 book ai didi

jquery - 如何使用 jquery 将整个 html 页面放在一个 div 中?

转载 作者:太空狗 更新时间:2023-10-29 15:20:10 28 4
gpt4 key购买 nike

首先,我想让大家知道我是绝对的初学者,所以请耐心等待。

我想知道如何将整个 html 页面放在一个 div 中。我试过 $("#footballPlayers").html("footballplayers.html"); 但它显示 footballplayers.html 文本而不是整个页面。

index.html:

<html>
<head>
<script type="text/javascript" src="jquery1.6.4min.js"></script>
<script type="text/javascript">
$(function(){
$("div#tabFootballPlayers").click(function(){
$("#footballPlayers").html("footballplayers.html");
$("#actionStars").html("");
$("#directors").html("");
});
});

$(function(){
$("div#tabActionStars").click(function(){
$("#actionStars").html("actionstars.html");
$("#footballPlayers").html("");
$("#directors").html("");
});
});

$(function(){
$("div#tabDirectors").click(function(){
$("#directors").html("directors.html");
$("#actionStars").html("");
$("#footballPlayers").html("");
});
});
</script>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div>
<div id="tabFootballPlayers">Football Players</div>
<div id="footballPlayers"> </div>
<div id="tabActionStars">Action Stars</div>
<div id="actionStars"> </div>
<div id="tabDirectors">Directors</div>
<div id="directors"> </div>
</div>
</body>
</html>

最佳答案

使用负载

jQuery("#footballPlayers").load("footballplayers.html");

了解更多详情 click here

关于jquery - 如何使用 jquery 将整个 html 页面放在一个 div 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8155932/

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