使用基本URL作为图像源html / js

时间:2017-03-07 15:24:24

标签: javascript html image src

嘿,我通过json获取我的html内容。图像块看起来像:

src=\"/2017/03/test.jpg\" alt=\"test\" width=\"576\" height=\"800\" srcset=\"/2017/03/test.jpg 576w, /2017/03/test-112x155.jpg 112w, /2017/03/test-432x600.jpg 432w\" 

src看起来应该像mywebsite.com/img-src,但它现在看起来像localhost / img-src ......

我尝试通过JavaScript替换它,但它看起来像:localhost / mywebsite.com / img-src

有人有想法

编辑:图片托管在一个网站上!它应该显示在每个设备上。现在是404 ......

1 个答案:

答案 0 :(得分:0)

可以通过在<base>标记中包含一个<head>标记来完成此操作:

<base href="mywebsite.com/path">

有关更多信息,请参考以下网页:https://www.w3schools.com/tags/tag_base.asp