gpt4 book ai didi

javascript - 将一个 URL 作为链接附加到另一个 URL

转载 作者:行者123 更新时间:2023-11-28 19:44:48 24 4
gpt4 key购买 nike

我想做的(并且惨败)是创建一个链接......并且该链接应该打开一个特定的页面,并附加当前页面。例如...如果用户在名为 www.bar.com 的页面上并单击链接...他将转到 www.foo.com?link=www.bar.com

这是我遗憾的小尝试......

<img src="#" id="link" target="_blank">

<script type="text/javascript">
window.onload = function(){
document.getElementById("link").href = 'http://www.foo.com?link='.window.location.toString();
}
</script>

我可以在 PHP 中执行此操作,但我无法在该特定页面上使用 PHP。有人可以帮忙吗?

编辑:我完全搞砸了我的问题,因为我在这里添加了我正在意外编辑的代码。我试图更改 href 代码以将特定图像放置在该位置......例如

<img src="#"> 

变成...

<img src="http://www.bar.com?link=www.foo.com">

抱歉我的无知。

最佳答案

最好用标签包装您的 img,然后更改其属性:(并使用 + 而不是 . 来链接字符串!)

<a href="#" target="_blank" id="myLink"><img src="#" ></a>

<script type="text/javascript">
window.onload = function(){
document.getElementById("myLink").href = 'http://www.foo.com?link='+ window.location.href.toString();
}
</script>

关于javascript - 将一个 URL 作为链接附加到另一个 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24483926/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com