|
藍森林 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] |
|