Html和Php图像没有在线显示但在localhost中显示

时间:2015-01-22 22:29:41

标签: php html

图片的文件位置是正确的,它显示在localhost上但不在线,我怎么能让它工作?

我尝试将图像从png更改为jpg并使用不同的图像并更改文件位置,然后在代码上更新,但它仍然不显示图像

<!DOCTYPE HTML>
<html>

<head>
<title>KMS</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
</head>
<body id="wrapper">

<div id="header">
<!--Logo-->
<div id="Logo">

</div>
<!--Logo-->

<!--Menu Buttons-->
<?php include 'menu.php';?>
<!--Menu Buttons-->
</div>


<div id="hContent">

<!--Frames--====================================================================-->

<div id="hFrames">
<!--Information go below-->
<div id="infoCon1">
<img id="kms_img" src="Images/Kmsproductsinformation.jpg" style="width:850px;"/>
<b />
<b />

</div>
<!--Information end-->
</div>




</div>
</div>


<!--
footer
-->



</body>
</html>

2 个答案:

答案 0 :(得分:0)

尝试<img id="kms_img" src="images/kmsproductsinformation.jpg" style="width:850px;"/>并确保您的images目录和kmsproductsinformation.jpg文件为小写。

答案 1 :(得分:0)

你的DIVS有一些有趣的事情。你有两个额外的关闭DIV标签()朝着文件的末尾 - 我开始修复它们。

已经说过,如果它是localhost也没关系,或者它是jpg还是png,但是如果你将它设置为非100%的宽度,PNG会更好。

在没有所有DIVS或menu.php文件的情况下尝试一些基本的东西,看看是否有效。

<!DOCTYPE HTML>
<html>

<head>
<title>KMS</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
</head>
<body id="wrapper">

<img id="kms_img" src="Images/Kmsproductsinformation.jpg" />

</body>
</html>