当前位置: 代码迷 >> ASP >> 怎样激活缩小的窗口?解决方法
  详细解决方案

怎样激活缩小的窗口?解决方法

热度:424   发布时间:2012-02-04 15:43:08.0
怎样激活缩小的窗口?
问题如下:
当我打开了一个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>
  相关解决方案