愚蠢的问题,但我想创建或设置一个图像src,在字符串后附加当前的URL。
所以我想写一下
<img src="//testURL.comaction?item={www.currenturl.com}" id="tabUrl" />
所以{www.currenturl.com}将替换为当前的网址
我知道我可以通过using window.location.href;
获取当前网址,但如何将其添加到字符串中呢?
不确定我是否应该使用document.getElementById
创建变量并应用它taboo = window.location.href;
或者写一个类似于下面例子的文件
<script>document.write('<img src="'//testURL.comaction?item= +
window.location.href + '">')</script>
感谢任何帮助。
答案 0 :(得分:1)
您的报价有点偏差:试试这个
'<img src=//testURL.comaction?item=' + window.location.href + '>'
答案 1 :(得分:1)
如果您想要一个纯粹的JS方法来做同样的事情,我建议您遵循。
var string="testURL.comaction?item="+window.location.href;
document.getElementsByTagName("img").setAttribute("src", string);