Hello以下函数包含一个在localhost中正常工作的图像,但无论何时我将其上传到cpanel,都无法在线工作。
以下是代码:
function CONshowElements()
{
var Construction = "<center><img src='images/SCALE Construction.PNG'></center><br>The construction company with several years of experience in projects valued over millions of USD having Service and Quality with satisfaction and appreciation of the clients.";
document.getElementById("contents").innerHTML = Construction;
}
答案 0 :(得分:0)
您的服务器可能在Linux下运行,而您的localhost可能在Windows下运行。
这意味着图像文件名区分大小写。
检查您的图像名称是否实际
SCALE Construction.PNG
而不是
SCALE Construction.png
如果是这种情况,您将在开发控制台上获得404。
此外,文件名中的空格是一个非常糟糕的主意......