藍森林首頁 | 返回主頁 | 本站地圖 | 站內搜索 | 聯繫信箱 |
 您目前的位置:首頁 > 自由軟件 > 技術交流 > 應用編程


    

藍森林 http://www.lslnet.com 2006年8月25日 8:28

請教網頁對話框問題。

彈出窗口經常被各種瀏覽器攔截
請問各位高手,怎麼樣才能把這個彈出窗口改成網頁對話框呢?
謝謝!

[html]<script>
document.onclick=function(){
  var oSource = window.event.srcElement;
  if(oSource.tagName == "A"){
    window.open(oSource.href,'','width=105,height=225,top=100,left=20');
    return false;
  }
};
</script>
<body>
<a href='index.html' target=_blank>Music</a><br>
</body>
[/html]

[html]
<script>
document.onclick=function(){
  var oSource = window.event.srcElement;
  if(oSource.tagName == "A"){
    window.showModelessDialog(oSource.href,'','dialogWidth:105px;dialogHeight:225px;dialogTop:100px;dialogLeft:20px;status:no;help:no;scroll:no');
    return false;
  }
};
</script>
<body>
<a href='index.html' target=_blank>Music</a><br>
</body>

[/html]




Copyright © 1999-2000 LSLNET.COM. All rights reserved. 藍森林網站 版權所有。 E-mail : webmaster@lslnet.com