gpt4 book ai didi

javascript - HTML将一个html文件中的一个div的内容加载到另一个html文件中

转载 作者:行者123 更新时间:2023-11-28 04:32:00 30 4
gpt4 key购买 nike

最近开始学习一点HTML,有点疑惑。我的意图是在第一页中制作一个 div 部分,它可以根据您在菜单上单击的元素而改变(而不是将您带到另一个 HTML)。我已经用 javascript 尝试了一些事情,看看我是否可以让它工作,但尽管在其他帖子中给出了给定的解决方案,但我没有取得任何成就。

这是我目前所拥有的:

.sideNav {
position: fixed;
width: 250px;
height: 100vh;
left: 0;
right: 0;
background-color: red;
top: 60px;
}

.contentWrapper {
margin: 60px 0 0 250px;
padding: 0 30px;
left: 0;
top: 0;
background-color: blue;
}
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset = utf-8>
<link rel = "stylesheet" href = "./assets/stylesheets/main.css">
<script type="text/javascript">
function toggleMenu(id) {
var menuBox = document.getElementById(id);
if(menuBox.style.display == "block") {
menuBox.style.display = "none";
} else {
menuBox.style.display = "block";
}
}
</script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".menuAnchor").on("click", function() {
event.preventDefault();
$("#contentWrapper").load("food.html" + " #contentWrapper");
return false;
)};
)};
</script>
<title>The Nest</title>


</head>
<body>
<aside class = "sideNav">
<div>
<a class = "menuAnchor" onclick = "toggleMenu('foodMenu')"> Food</a>
<ul class = "menuBox" id = "foodMenu" style = "display : none">
<li>
<a id = "burguer" href = "#">Burguer</a>
</li>
<li>
<a id = "hotDog" href = "#">Hot Dog</a>
</li>
<li>
<a id = "pizza" href = "#">Pizza</a>
</li>
</ul>
</div>
</aside>
<div id = "contentWrapper">
<section class = "contentWrapper">
d
</section>
</div>
</body>
</html>

这是另一个 HTML 文件:

<!DOCTYPE html>

<html lang="en">
<body>
<div id = "contentWrapper">
<section class = "contentWrapper">
<h1>Food</h1>

<article id = "burguer">
<h2>Burguer</h2>
<p>
Burguer
</p>
</article>
<article id = "hotDog">
<h2>Hot Dog</h2>
<p>
Hot Dog
</p>
</article>
<article id = "pizza">
<h2>Pizza</h2>
<p>
Pizza
</p>
</article>
</section>
</div>
</body>
</html>

我想要的是,当我按下字符串( future 的按钮)时,菜单会级联并且出现在 div 部分中的“p”会更改为第二个 HTML 信息,但我只能链接到另一个页面.

正如我所说,这些脚本的一部分似乎可以工作,因为 div 加载的脚本在其他答案中存在,但不能让它为我工作。

我不确定我正在做的事情以及我正在做的事情是否是最好的选择。

谢谢,抱歉给您带来麻烦。


我正在尝试的是,拥有一个带有头部和菜单的主 html:

Graphic for the main html

当按下菜单中的一个链接时,内容从其他 html 更改为另一个,比方说食物。

最佳答案

虽然你问的不太清楚,但是我会根据我对你问题的理解提供一个解决方案:

如果您想要一些用于替换 div 内容的 html,请考虑模板标签:https://developer.mozilla.org/en/docs/Web/HTML/Element/template

模板未显示,但可以使用 jQuery(我看到您正在使用)访问,例如:HTML:

<div id="replace-area">
</div>
<template id="replace-content">
<ol>
<li>Here</li>
<li>Are</li>
<li>Some</li>
<li>Items</li>
</ol>
</template>

jQuery:

$("replace-area").html($("replace-content").clone().html());

replace-area 包含您希望用户在最后看到的内容,replace-content 包含您要放入 replace-area 的内容。

这将导致:

<div id="replace-area">
<ol>
<li>Here</li>
<li>Are</li>
<li>Some</li>
<li>Items</li>
</ol>
</div>
<template id="replace-content">
<ol>
<li>Here</li>
<li>Are</li>
<li>Some</li>
<li>Items</li>
</ol>
</template>

只有 div 可见。

希望这可以帮助您实现目标。

关于javascript - HTML将一个html文件中的一个div的内容加载到另一个html文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41685096/

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