我需要将一个javascript变量作为图像源。这是我的图片标记应采用此格式 我在这里添加我的脚本
document.getElementById("pricefilter").innerHTML ='<img src="variablename/spinner.gif" title="Loading..." alt="Loading...">';
变量名称带有我的图片路径。我怎么能把它放在双重状态。
请帮助解决此问题
答案 0 :(得分:3)
如果variablename
包含路径:
document.getElementById("pricefilter").innerHTML ='<img src="' + variablename +
'/spinner.gif" title="Loading..." alt="Loading...">';
答案 1 :(得分:2)
如果我的问题正确使用
document.getElementById("pricefilter").src=ur variable;
其中一个类似于urs的先前stackoverflow ques显示了这个
<img src="blank.png" id="image" alt="just nothing">
<script type="text/javascript">
document.getElementById('image').src = "yourpicture.png";
</script>