gpt4 book ai didi

javascript - 如何在弹出窗口中显示链接?

转载 作者:行者123 更新时间:2023-11-30 18:33:56 25 4
gpt4 key购买 nike

我有以下代码的链接。

<a href="www.facebook.com">Facebook</a>

我希望当我点击 facebook 链接时,它应该在弹出窗口中打开窗口。现在它在同一个窗口中打开。

我该怎么做?

最佳答案

XHTML 严格:

window.onload=function() {
document.getElementById('fbLink').onclick=function() {
var w=window.open(this.href,this.getAttribute("rel"),"width=500,height=600");
return w?false:true
}
}

使用

<a href="http://www.facebook.com" rel="external" title="Open Facebook" id="fbLink">facebook</a>

最安全:

<a href="http://www.facebook.com" target="_blank">Facebook</a>

可能(这里是内联):

<a href="http://www.facebook.com" target="_blank"
onclick="var w=window.open(this.href,this.target,'width=500,height=600');
return w?false:true">Facebook</a>

不引人注目:

window.onload=function() {
document.getElementById('fbLink').onclick=function() {
var w=window.open(this.href,this.target,'width=500,height=600');
return w?false:true
}
}

使用

<a href="http://www.facebook.com" target="_blank" id="fbLink">facebook</a>

关于javascript - 如何在弹出窗口中显示链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8847610/

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