大家好,如果您还对a标签打开新窗口不太了解,没有关系,今天就由本站为大家分享a标签打开新窗口的知识,包括A标签新窗口打开的问题都会给大家分析到,还望可以解决大家的问题,下面我们就开始吧!
本文主要内容一览

a标签打开新窗口(A标签新窗口打开)
1如何实现a标签点击事件弹出弹窗而不是页面
#alert_box
{
width:200px;
height:200px;
background-color:red;
display:none;
position:absolute;
}
大家好,如果您还对a标签打开新窗口不太了解,没有关系,今天就由本站为大家分享a标签打开新窗口的知识,包括A标签新窗口打开的问题都会给大家分析到,还望可以解决大家的问题,下面我们就开始吧!

a标签打开新窗口(A标签新窗口打开)
#alert_box
{
width:200px;
height:200px;
background-color:red;
display:none;
position:absolute;
}
varwidth=document.documentElement.clientWidth||document.body.clientWidth;
varheight=document.documentElement.clientHeight||document.body.clientHeight;
functionalert_box()
document.getElementById("alert_box").style="display:inline;position:absolute;left:"+Math.floor((width-200)/2)+"px;top:"+Math.floor((height-200)/2)+"px;";
}