gpt4 book ai didi

html - jsp动态web元素中不显示背景图片

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

您好,我正在尝试在 home.jsp 页面中使用背景图像。当我运行元素时,图像未加载,显示的是红色十字标记而不是图像

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" href="ac-styles.css" type="text/css" media="screen" />

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Home Page</title>

</head>
<body >
<img src="img/bg.png">


<p> Hello This Is The Home Page For your J2ee Spring Application</p>

</body>
</html>

我把图片放在了

enter image description here

当我运行应用程序时,结果是

enter image description here

请帮忙...提前致谢..

最佳答案

JSP 文件与图像文件根文件夹不在同一个文件夹中。因此,要么您必须将 .jsp 文件移动到 web-content 文件夹中,要么您应该使用退格命令,例如:

<img src="../../img/bg.png">

这应该有效。相反,最好的方法是将您的图像文件迁移到 web-inf/views 文件夹中。这很容易,但不推荐用于大型元素。

note that I included "../" two times. In your directory structure it is needed. For more information read the refering manual for HTML src's.

关于html - jsp动态web元素中不显示背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23624838/

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