javascript|問題|顯示
返回某個固定式頁面面:
function bk(strUrl)
{
window.location.href=strUrl
}
bk("A.jsp")
開啟頁面就全螢幕顯示
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
if (this.name!='fullscreen'){
window.open(location.href,'fullscreen','fullscreen,scrollbars')
}
// End -->
</script>
<a href="JavaScript:window.close(self)">返回正常效果顯示</a>
<script LANGUAGE="JavaScript">
<!--
window.open ("URL(如http://www.webjx.com)", "(視窗名稱)123", "height=170, width=300, toolbar=no,menubar=no, scrollbars=no, resizable=no, location=no, status=no, top=100") ;
//-->
</script>
註:
url代表快顯視窗的地址
height代表快顯視窗的高度
width代表快顯視窗的寬度
toolbar代表工具列,no表示沒有工具列,yes為有工具列
menubar代表功能表列,no表示不顯示菜單,使用者也可以用yes
scrollbars代表捲軸,no表示沒有捲軸,yes為有捲軸,也可以用auto
resizable代表是否可以縮放快顯視窗
location代表地址欄
status代表關態欄
top代表視窗距瀏覽器上部的距離
JavaScript:完全容錯和瀏覽器自動最大化
錯誤碼的即時處理
我們編製的JavaScript代碼有時會由於我們的疏忽而存在一些錯誤,以至於使用者
瀏覽時會彈出令人生厭的錯誤提示架構,如何處理這種情況呢?下面介紹兩種常
見方法:
(1) 完全容錯
即使用者瀏覽含有錯誤碼的頁面時,忽視所有的錯誤。代碼如下:
;
〈script〉
function killerr() {
return true
}
window.onerror=killerr
〈/script〉
它雖然能掩蓋錯誤,避免彈出錯誤提示框,但程式仍未正確執行,下面介紹另一
處理方法。
(2) 反饋錯誤資訊
即當出現錯誤碼時,自動彈出我們預先設計好的反饋視窗,目的是使用者只需簡
單地按一下滑鼠就可以把反饋資訊發到你指定的信箱,當然反饋視窗的內容我們
可以任意修改設計。代碼如下:
〈script〉
function errorinfo()
{
errorwin=window.open(″ ″,″ ″,″width=20,height=120″)
errorwin.document.write(′〈title〉指令碼錯誤報表〈/title〉〈center〉該頁
面發現了指令碼運行錯誤,請〈a href=″mailto:lhy@cenpok.net″〉通知〈/a〉
管理員。〈br〉〈form〉〈input type=″button″ value=″關閉視窗″ onCli
ck=″window.close()″〉〈/form〉〈/center〉′)
errorwin.document.close()
errorwin.document.bgColor=″#ffffff″
return true
}
window.onerror=errorinfo
〈/script〉
最佳化瀏覽視窗
使用這段代碼,當使用者開啟你的頁面時,瀏覽器視窗會自動擴充到最大可利用空間
(非全屏),豈不是很專業?
以下代碼放在〈head〉〈/head〉之間:
〈script language=″JavaScript″〉
〈!--function winfix() {
if (document.layers) {
width=screen.availWidth-10;
height=screen.availHeight-20;
} else {
var width=screen.availWidth-2;
var height=screen.availHeight;
}
self.resizeTo(width, height);
self.moveTo(0, 0);
}
//--〉
〈/script〉
以下代碼放在〈body〉Tag裡:
〈body onload=″winfix()″〉
<script language="javascript">
//Resize_Window
if ((screen.width == 1024) && (screen.height == 768)){
Resize_WindowX = 1024;
Resize_WindowY = 768;
self.resizeTo(Resize_WindowX,Resize_WindowY);//Resize_WindowEnd
}
else ((screen.width > 1024) && (screen.height > 1000)){
document.body.clientWidth = 1280;
document.body.clientHeight = 1024;
self.resizeTo(document.body.clientWidth,document.body.clientHeight);//Resize_WindowEnd
}
document.body.clientWidth; document.body.clientHeight
</script>
<script language="javascript">
<!-- Begin
if ((screen.width == 640) && (screen.height == 480)){
self.location.href='640*480.htm'
}
else if ((screen.width == 800) && (screen.height == 600)){
self.location.href='800*600.htm'
}
else if ((screen.width == 1024) && (screen.height == 768)){
self.location.href='1024*768.htm'
}
else {self.location.href='else.htm'
}
// End -->
</script>
用window.openr開啟的子父視窗之間的操作跟架構的是不一樣的,子視窗和父視窗之間有opener來聯絡。而源視窗要訪問子視窗要通過其控制代碼來操作。以下小例子希望能協助新手更瞭解他們的操作。
test.htm
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>子父視窗的操作</title>
</head>
<body>
<script>
var win=null;
function op(){
win=window.open("about:blank","win","width=200,height=200");
win.document.write("<input type='button' value='關閉父視窗' >");
win.document.write("<input type='button' value='重新整理你視窗' >");
}
</script>
<input value="開啟視窗" type="button"><input type="button" value="最小化" ><input type="button" value="最大化" ><input type=button value="關閉子視窗" ><input type=button value="重新整理子視窗" ><input type="button" value="看子視窗的大小" >
</body>
</html>
網頁顯示一定時間自動關閉
<script id=clientEventHandlersJS language=javascript>
window.opener = null;
</script>
<body bgcolor="#fef4d9" >
<html>
<head
<title>123</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
<!--
function omiga_window(){
window.open("full_window.htm","","fullscreen,scrollbars")
}
//-->
</script>
</head>
<body onblur="focus();closes.Click();" scroll="no">
<object id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<param name="Command" value="Close">
</object>
<p> </p>
<p> </p>
全屏!
</body>
</html>
<script language=″JavaScript″〉
〈!--function winfix() {
if (document.layers) {
width=screen.availWidth-10;
height=screen.availHeight-20;
} else {
var width=screen.availWidth-2;
var height=screen.availHeight;
}
self.resizeTo(width, height);
self.moveTo(0, 0);
}
//--〉
〈/script〉