返回某個固定頁面
function bk(strUrl)
{
windowlocationhref=strUrl
}
bk(Ajsp)
打開頁面就全屏顯示
<SCRIPT LANGUAGE=JavaScript>
<! Begin
if (thisname!=fullscreen){
windowopen(locationhreffullscreenfullscreenscrollbars)
}
// End >
</script>
<a JavaScript:windowclose(self)>返回正常效果顯示</a>
<script LANGUAGE=JavaScript>
<!
windowopen (URL(如) (窗口名稱) height= width= toolbar=nomenubar=no scrollbars=no resizable=no location=no status=no top=) ;
//>
</script>
注
url代表彈出窗口的地址
height代表彈出窗口的高度
width代表彈出窗口的寬度
toolbar代表工具欄no表示沒有工具欄yes為有工具欄
menubar代表菜單欄no表示不顯示菜單用戶也可以用yes
scrollbars代表滾動條no表示沒有滾動條yes為有滾動條也可以用auto
resizable代表是否可以縮放彈出窗口
location代表地址欄
status代表關態欄
top代表窗口距浏覽器上部的距離
JavaScript:完全容錯和浏覽器自動最大化
錯誤代碼的即時處理
我們編制的JavaScript代碼有時會由於我們的疏忽而存在一些錯誤以至於用戶
浏覽時會彈出令人生厭的錯誤提示框架如何處理這種情況呢?下面介紹兩種常
見方法
() 完全容錯
即用戶浏覽含有錯誤代碼的頁面時忽視所有的錯誤代碼如下
;
〈script〉
function killerr() {
return true
}
windowonerror=killerr
〈/script〉
它雖然能掩蓋錯誤避免彈出錯誤提示框但程序仍未正確執行下面介紹另一
處理方法
() 反饋錯誤信息
即當出現錯誤代碼時自動彈出我們預先設計好的反饋窗口目的是用戶只需簡
單地按一下鼠標就可以把反饋信息發到你指定的信箱當然反饋窗口的內容我們
可以任意修改設計代碼如下
〈script〉
function errorinfo()
{
errorwin=windowopen(″ ″″ ″″width=height=″)
errorwindocumentwrite(′〈title〉腳本錯誤報告〈/title〉〈center〉該頁
面發現了腳本運行錯誤請〈a href=″mailto:″〉通知〈/a〉
管理員〈br〉〈form〉〈input type=″button″ value=″關閉窗口″ onCli
ck=″windowclose()″〉〈/form〉〈/center〉′)
errorwindocumentclose()
errorwindocumentbgColor=″#ffffff″
return true
}
windowonerror=errorinfo
〈/script〉
優化浏覽窗口
使用這段代碼當用戶打開你的頁面時浏覽器窗口會自動擴展到最大可利用空間
(非全屏)豈不是很專業?
以下代碼放在〈head〉〈/head〉之間:
〈script language=″JavaScript″〉
〈!--function winfix() {
if (documentlayers) {
width=screenavailWidth-;
height=screenavailHeight-;
} else {
var width=screenavailWidth-;
var height=screenavailHeight;
}
selfresizeTo(width height);
selfmoveTo( );
}
//--〉
〈/script〉
以下代碼放在〈body〉Tag裡
〈body onload=″winfix()″〉
<script language=javascript>
//Resize_Window
if ((screenwidth == ) && (screenheight == )){
Resize_WindowX = ;
Resize_WindowY = ;
selfresizeTo(Resize_WindowXResize_WindowY);//Resize_WindowEnd
}
else ((screenwidth > ) && (screenheight > )){
documentbodyclientWidth = ;
documentbodyclientHeight = ;
selfresizeTo(documentbodyclientWidthdocumentbodyclientHeight);//Resize_WindowEnd
}
documentbodyclientWidth; documentbodyclientHeight
</script>
<script language=javascript>
<! Begin
if ((screenwidth == ) && (screenheight == )){
selflocation*
}
else if ((screenwidth == ) && (screenheight == )){
selflocation*
}
else if ((screenwidth == ) && (screenheight == )){
selflocation*
}
else {selflocation
}
// End >
</script>
用windowopenr打開的子父窗口之間的操作跟框架的是不一樣的子窗口和父窗口之間有opener來聯系而源窗口要訪問子窗口要通過其句柄來操作以下小例子希望能幫助新手更了解他們的操作
<html>
<head>
<meta httpequiv=ContentType content=text/html; charset=gb>
<meta name=GENERATOR content=Microsoft FrontPage >
<meta name=ProgId content=FrontPageEditorDocument>
<title>子父窗口的操作</title>
</head>
<body>
<script>
var win=null;
function op(){
win=windowopen(about:blankwinwidth=height=);
windocumentwrite(<input type=button value=關閉父窗口 onclick=windowopeneropener=null;windowopenerclose()>);
windocumentwrite(<input type=button value=刷新你窗口 onclick=windowopenerlocationreload()>);
}
</script>
<input onclick=op() value=打開窗口 type=button><input type=button value=最小化 onclick=if(win&&winopen&&!winclosed){winresizeTo();winmoveTo(windowscreenwidth);}else alert(還沒有打開窗口或已經關閉)><input type=button value=最大化 onclick=if(win&&winopen&&!winclosed){winmoveTo();winresizeTo(screenavailWidth+screenavailHeight+);}else alert(還沒有打開窗口或已經關閉);><input type=button value=關閉子窗口 onclick=if(win&&winopen&&!winclosed){winopener=null;winclose()}else alert(還沒有打開窗口或已關閉)><input type=button value=刷新子窗口 onclick=if(win&&winopen&&!winclosed){winlocationreload();winfocus()}else alert(窗口還沒有打開或已關閉)><input type=button value=看子窗口的大小 onclick=if(win&&winopen&&!winclosed){alert(windocumentbodyclientWidth+*+windocumentbodyclientHeight);winfocus();}else{alert(還沒有打開窗口或者已關閉)};>
</body>
</html>
網頁顯示一定時間自動關閉
<script id=clientEventHandlersJS language=javascript>
windowopener = null;
</script>
<body bgcolor=#fefd onLoad=setTimeout(windowclose )>
<html>
<head
<title></title>
<meta httpequiv=ContentType content=text/html; charset=gb>
<script>
<!
function omiga_window(){
windowopen(fullscreenscrollbars)
}
//>
</script>
</head>
<body onload=omiga_window() onblur=focus();closesClick(); scroll=no>
<object id=closes type=application/xoleobject classid=clsid:adbadffcfaaba>
<param name=Command value=Close>
</object>
<p> </p>
<p> </p>
全屏!
</body>
</html>
<script language=″JavaScript″〉
〈!--function winfix() {
if (documentlayers) {
width=screenavailWidth-;
height=screenavailHeight-;
} else {
var width=screenavailWidth-;
var height=screenavailHeight;
}
selfresizeTo(width height);
selfmoveTo( );
}
//--〉
〈/script〉
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19803.html