gpt4 book ai didi

css - 为 Accordion 列表链接 CSS 和 JS 文件 - 不作为单独的文件运行

转载 作者:行者123 更新时间:2023-11-28 15:29:29 26 4
gpt4 key购买 nike

我正在学习如何制作 Accordion 列表,并从 www.w3schools.com 找到了以下代码(HTML、CSS 和 JS)。如果我在本地运行代码,作为一个 .html 文件,它会按预期工作。但是,如果我将它分成三个文件,并在我的 HTML 文件中链接 CSS 和 JS 文件,则下拉列表不起作用。我是网络开发的(非常)新手,非常感谢我能为此得到的任何解释!提前致谢。

原始代码(全部在一个文档中):

<!DOCTYPE html>
<html>
<head>
<style>
button.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
background-color: #ddd;
}

button.accordion:after {
content: '\002B';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}

button.accordion.active:after {
content: "\2212";
}

div.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>

<h2>Accordion with symbols</h2>
<p>In this example we have added a "plus" sign to each button. When the user clicks on the button, the "plus" sign is replaced with a "minus" sign.</p>
<button class="accordion">Section 1</button>
<div class="panel">
<p>TEXT 1</p>
</div>

<button class="accordion">Section 2</button>
<div class="panel">
<p>TEXT 2</p>
</div>

<button class="accordion">Section 3</button>
<div class="panel">
<p>TEXT 3</p>
</div>

<script>
var acc = document.getElementsByClassName("accordion");
var i;

for (i = 0; i < acc.length; i++) {
acc[i].onclick = function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
}
}
</script>

</body>
</html>

以及将 CSS 和 JS 链接为单独文件的 HTML 文件:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./mystyling.css">
<title>Page TItle</title>
</head>
<body>
<script src="./myjavascript.js"></script>

<h2>Accordion with symbols</h2>

<p>In this example we have added a "plus" sign to each button. When the user clicks on the button, the "plus" sign is replaced with a "minus" sign.</p>
<button class="accordion">Section 1</button>
<div class="panel">
<p>TEXT 1</p>
</div>

<button class="accordion">Section 2</button>
<div class="panel">
<p>TEXT 2</p>
</div>

<button class="accordion">Section 3</button>
<div class="panel">
<p>TEXT 3</p>
</div>
</body>
</html>

我的 JS 和 CSS 文件只是将 JS 和 CSS 文件复制并粘贴到其他文件(分别另存为 .js 和 .css)。

最佳答案

快速说明一下,您想在正文底部链接您的。你会希望你的 HTML 在 JavaScript 之前加载:

<script src="./myjavascript.js"></script>
</body>

第二个注释,Mozilla Developer Network比 W3 Schools 信息量更大、更可靠。您需要训练自己通过 W3 访问 MDN。

您的 js 和 css 文件位于何处?我们也可以看到它们的代码吗?

为了更有效地调试,请在浏览器中打开 html 文件并使用开发人员工具让我们知道您遇到的错误(如果有)。 option+command+j 适用于 mac 和 control+shift+j 适用于 Windows,或者只需右键单击检查元素。

关于css - 为 Accordion 列表链接 CSS 和 JS 文件 - 不作为单独的文件运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44894331/

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