日期:2014-05-17  浏览次数:20846 次

怎样激活缩小的窗口?
问题如下:
当我打开了一个WEB窗口,然后把他最小化,当我第二次点击此连接时,没有任何提示.我希望是能够激活缩小的窗口.那位高手有没有这方面详细的解决方案.

------解决方案--------------------
focus()
------解决方案--------------------
<a style= "cursor:hand " onclick=javascript:window.open '1.htm ', ' ', 'width=200,height=100 ');> 激活
窗口 </a>
------解决方案--------------------
try
------------------------------------------
<script type= "text/javascript ">
var w;
function Open(){
w = window.open( ' ');
}

</script>
<button onclick= "Open() "> 打开 </button>
<button onclick= "w.focus(); "> 激活 </button>
------解决方案--------------------

<a href= "# " onclick= "window.open( ' ', 'aa ').focus(); "> asdfafd </a>