gpt4 book ai didi

java - 无法加载 css

转载 作者:太空宇宙 更新时间:2023-11-04 10:08:02 25 4
gpt4 key购买 nike

我的 css 文件放在这里:C:\Test Workspace\MySunlifeApp\cssFiles。

在我名为 MySunlifeApp 的应用程序的一个 jsp 中,我想加载这个 css 文件。

<!doctype html>

<html lang="en">

<head>
<title>Calendar</title>
<h1><div align="center">My Sunlife App</div></h1>
<meta charset="utf-8">

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">

<link type="text/css" rel="stylesheet" href="/MySunlifeApp/cssFiles/BackgroundIMGE.css" />

<script src="//code.jquery.com/jquery-1.10.2.js"></script>

<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<script type = "text/javascript" language = "javascript">


$(document).ready(function() {
$("#datepicker").datepicker();


});
</script>


</head>

但是当我运行它时,出现错误:GET http://localhost:8090/MySunlifeApp/cssFiles/BackgroundIMGE.css NewCalendar.jsp:12

加载资源失败:服务器响应状态为 404(未找到)

最佳答案

尝试

href="./MySunlifeApp/cssFiles/BackgroundIMGE.css" 

并且 h1 元素应该在 body 标签内。

 <!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">
<title>Calendar</title>

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">

<link type="text/css" rel="stylesheet" href="./MySunlifeApp/cssFiles/BackgroundIMGE.css" />

</head>
<body>
<h1><div align="center">My Sunlife App</div></h1>

<script src="//code.jquery.com/jquery-1.10.2.js"></script>

<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<script type = "text/javascript" language = "javascript">


$(document).ready(function() {
$("#datepicker").datepicker();


});
</script>
</body>
</html>

最佳实践

在关闭 body 标签之前,始终将 css 放在 head 和 js 脚本中。

关于java - 无法加载 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37832775/

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