如何在img标签中为多个图像使用常量?

时间:2017-09-19 07:18:47

标签: javascript html

我有一个托管在服务器上的图像,我有绝对的路径。

有没有办法为基本网址部分使用常量?

我的意思是我:

<img src="someexample.com/someImage.jpg" ... />
<img src="someexample.com/someOtherImage.jpg" ... />

相反,我想使用类似的东西:

<img src= someVariable + "/someImage.jpg" ... />
<img src= someVariable + "/someOtherImage.jpg" ... />

这样,如果我需要更改网址,我可以更改常量。

1 个答案:

答案 0 :(得分:0)

<head>
<base href="https://www.w3schools.com/images/" target="_blank">
</head>
<body>
<img src="stickman.gif" width="24" height="39" alt="Stickman">
<a href="https://www.w3schools.com">W3Schools</a>
</body> 

您可以使用基本路径。来自W3Schools

的示例