gpt4 book ai didi

javascript - 无法加载我的 css 和 js 文件

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

所以这就是问题所在:我在没有任何先验知识的情况下开始编写 html,所以不幸的是我一开始并没有创建 .css 或 .js 文件。与我正在处理的网站相距甚远,我试图将所有样式信息和 js 代码放入各自的文件中,同时删除原始 html 中的内容。经过大量审查,我找不到问题所在。它们都应该正确链接,因为所有内容都在同一个目录中,我放了一些 js 代码来证明我的“外部”文件中的 jquery 文件没有加载。

这是我的 js 文件、css 和我的 html 的标题。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
hr { 
margin: 1px;
}

body {
background: url("Brown Background 2 adjusted.jpg") no-repeat ;
background-attachment: fixed;
background-position: ;
background-size: cover;

}
html{
margin:0;
padding:0;
}


body,h1, p
.mainfont{
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
margin: 0px;
padding: 0px;
text-align: center;
}


@font-face {
font-family: 'myFirstFont';
src: url('melmacracked.woff') format('woff');
}
#titleheader
{
color:#6b4527;
font-size: 48px;
font-family: 'myFirstFont';
}

img{
width: 50%;
}




h1 {
font-size: 48px;
font-weight: 300;
margin: 0 0 0px 0;
}

.lead {
font-size: 21px;
font-weight: 200;
margin-bottom: 0px;
}

p {
margin: 0 0 0px;
}
.margin{
margin:30px;
}
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link rel="stylesheet" href="fishook-theme.css" type="text/css" />
<script type="text/javascript" src="external.js"></script>
<script>if (typeof jQuery != 'undefined') {

alert("jQuery library is loaded!");

}else{

alert("jQuery library is not found!");

}</script>
</head>

仅供引用,我已经阅读了许多其他帖子,这些帖子都有同样模糊的问题,但没有解决我的问题的方法。提前致谢。

最佳答案

所以,如果我没理解错的话,第一个片段是在你的 js 文件中?

嗯,这就是问题所在。它应该在您的 html 文件中。 js 文件不理解 html 片段。它不知道如何处理它。

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link rel="stylesheet" href="fishook-theme.css" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"> </script>
<script>if (typeof jQuery != 'undefined') {

alert("jQuery library is loaded!");

} else {

alert("jQuery library is not found!");

} </script>
</head>

关于javascript - 无法加载我的 css 和 js 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33047238/

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