English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

我很久以前
就看到 有些網頁
連結 又見開啟 空白 出現 javascript:popup()
直接案 又有網址 很神奇 找遍 許多教學網站... 都沒教
請問 這各語法完整的?? javascript:popup() 和 javascript:void(0) 差異是??

javascript:void(0) 又如何配合.JS ???

2006-09-03 05:54:11 · 1 個解答 · 發問者 鈞鋐 4 in 電腦與網際網路 程式設計

恩恩恩~~
語法 貼在 Microsoft FrontPage 程式
案預覽 直接錯誤...

2006-09-16 05:14:04 · update #1

恩恩~~3Q
我的是 pc919919@yahoo.com.tw
------------------------------
這各問題困惑我很久了~

2006-09-17 06:21:01 · update #2

1 個解答

javascript:popup() 和 javascript:void(0) 都是屬於javascript裡的語法
請自行把<>改為小寫的
==========================================================
<a href="javascript:void(0);" onmouseover="return overlib('會自動關掉');" onmouseout="return nd();">文字連結</a>
這個是滑鼠移開時會把小視窗關掉
=============================
<html>
<head>
<title>Javascript Popup</title>
<SCRIPT TYPE='text/javascript'>
<!--
function popup(width,height){
if(window.innerWidth){
LeftPosition =(window.innerWidth-width)/2;
TopPosition =((window.innerHeight-height)/4)-50;}
else{
LeftPosition =(parseInt(window.screen.width)-width)/2;
TopPosition=((parseInt(window.screen.height)-height)/2)-50;}
attr = 'resizable=no,scrollbars=yes,width=' + width + ',height=' +
height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
TopPosition + '';
popWin=open('', 'new_window', attr);
popWin.document.write(' Test Popup ');
popWin.document.write('<body><div align=center>');
popWin.document.write('<b>This is a test popup window

');
popWin.document.write('Content goes here
');
popWin.document.write('Content goes here
');
popWin.document.write('Content goes here
');
popWin.document.write(' ');
}
//-->
</SCRIPT>
</head>
<body>
<a href="javascript:popup(400,200);">Generate popup</a>
</body>
</html>

2006-09-16 18:18:47 補充:
語法 貼在 Microsoft FrontPage 程式 案預覽 直接錯誤... 因為..知識上無法貼完整的語法..會消失= =所以我把小寫的 改成大寫的 還有..小寫的()改成大寫的()..如果你直接貼上的話一直是錯誤的...抱歉= =|||

2006-09-16 18:22:30 補充:
如果還是想測試的話..我可以寫在記事本上E-MAIL給你..麻煩在留MAIL給我^0^

2006-09-15 10:22:09 · answer #1 · answered by 心兒 3 · 0 0

fedest.com, questions and answers