熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

IE裡Window的Method列表

2022-06-13   來源: JSP教程 

  alert(sMsg)
//彈出一個確認消息框
attachEvent(sEventpFunction)
//綁定一個函數到某個事件事件觸發時隨機執行其中一個被綁定的函數
blur()
//令窗口喪失焦點

  clearInterval(iIntervalID)
//清除指定定時器的關聯函數
clearTimeout(iTimeoutID)
//清除指定延時器的關聯函數
close()
//關閉窗口如果窗口不是用腳本打開的會彈出確認對話框
confirm([sMessage])
//彈出確定/取消對話框
createPopup([vArgs])
//創建一個隱藏的彈出式窗口vArgs是未來考慮提供的參數返回窗口句柄
detachEvent(sEventpFunction)
//取消一個事件的某個綁定函數
execScript(sExpression sLanguage)
//用指定的語言執行代碼
focus()
//激活窗口

  moveBy(iXiY)
//用相對方式移動窗口
moveTo(iLeftiTop)
//用絕對方式移動窗口
navigate(sURL)
//轉到指定的連接

  open( [sURL] [ sName] [ sFeatures] [ bReplace])
//打開新窗口並返回窗口句柄
//sName=(*_blank:打開一個新的未命名窗口;_parent:在父窗口中打開;_search:同時打開搜索窗口_self:替換本窗口; _top:在頂級窗口裡打開;*)
//sFeatures=(*channelmode = { yes | no | | };directories = { yes | no | | };fullscreen = { yes | no | | };height = number;left = number;location = { yes | no | | };menubar = { yes | no | | };resizable = { yes | no | | };scrollbars = { yes | no | | };status = { yes | no | | };titlebar = { yes | no | | };toolbar = { yes | no | | };top = number;width = number;*)

  print()
//打印當前窗口文檔內容
prompt( [sMessage] [ sDefaultValue])
//彈出輸入對話框
resizeBy(iX iY)
//以相對方式改變窗口大小
resizeTo(iWidth iHeight)
//以絕對方式改變窗口大小

  scroll(iXiY)
滾動窗口與scrollTo一樣的效果出於兼容性的考慮保留下來的方法
scrollBy(iX iY)
//用相對方式滾動窗口
scrollTo(iX iY)
//用絕對方式滾動窗口
setActive()
//激活目標而不將視線轉向目標
setInterval(vCode iMilliSeconds [ sLanguage])
//定時執行一段代碼
setTimeout(vCode iMilliSeconds sLanguage)
//延時執行一段代碼
showHelp(sURL [ vContextID])
//打開一個幫助文件sURL為幫助文檔地址vContextID為幫助索引號

  showModalDialog(sURL [ vArguments] [ sFeatures])
//打開一個模式對話框
//vArguments=需要向新開模式對話框傳遞的參數
//sFeatures=(*dialogHeight:sHeight;dialogLeft:sXPos;dialogTop:sYPos;dialogWidth:sWidth;center:{ yes | no | | | on | off };dialogHide:{ yes | no | | | on | off };edge:{ sunken | raised };help:{ yes | no | | | on | off };resizable:{ yes | no | | | on | off };scroll:{ yes | no | | | on | off };status:{ yes | no | | | on | off };unadorned:{ yes | no | | | on | off };*)

  showModelessDialog(sURL [ vArguments] [ sFeatures])
//打開一個非模式對話框
//vArgument=需要向新開模式對話框傳遞的參數
//sFeatures=(*dialogHeight:sHeight;dialogLeft:sXPos;dialogTop:sYPos;dialogWidth:sWidth;center:{ yes | no | | | on | off };dialogHide:{ yes | no | | | on | off };edge:{ sunken | raised };help:{ yes | no | | | on | off };resizable:{ yes | no | | | on | off };scroll:{ yes | no | | | on | off };status:{ yes | no | | | on | off };unadorned:{ yes | no | | | on | off };*)

  :execCommand的完全參考(中文版)
documentexecCommand(sCommand[交互方式 動態參數])

  DPosition;documentexecCommand(DPositionfalsetrue);使絕對定位的對象可直接拖動;ie
AbsolutePosition;documentexecCommand(AbsolutePositionfalsetrue);使對象定位變成絕對定位;ie
BackColor;documentexecCommand(BackColorfalsesColor);設置背景顏色;ie
BlockDirLTR;none;使塊級元素排版方式為從左到右?;不支持
BlockDirRTL;none;使塊級元素排版方式為從右到左?;不支持 Bold;documentexecCommand(Boldfalsenull);使選中區域的文字加粗;ie
BrowseMode;none;設置浏覽器模式?;不支持 Copy;
documentexecCommand(Copyfalsenull);復制選中的文字到剪貼板;ie CreateBookmark;documentexecCommand(CreateBookmarkfalsesAnchorName);設置指定錨點為書簽;ie
CreateLink;documentexecCommand(CreateLinkfalsesLinkURL);將選中文本變成超連接若第二個參數為true會出現參數設置對話框;ie
Cut;documentexecCommand(Cutfalsenull);剪貼選中的文字到剪貼板;ie
Delete;documentexecCommand(Deletefalsenull);刪除選中的文字;ie
DirLTR;none;排版方式為從左到右?;不支持 DirRTL;none;排版方式為從右到左?;不支持
EditMode;none;設置編輯模式?;不支持
FontName;documentexecCommand(FontNamefalsesFontName);改變選中區域的字體;ie
FontSize;documentexecCommand(FontSizefalsesSize|iSize);改變選中區域的字體大小;ie
ForeColor;documentexecCommand(ForeColorfalsesColor);設置前景顏色;ie
FormatBlock;documentexecCommand(FormatBlockfalsesTagName);設置當前塊的標簽名;ie

  窗口一共有四個參數
windowopen(strstrstrstr)
str:要打開的地址
str窗口的名字可以自定義和取下面的值
_blank_parent_self_top_search[IE+支持]_media[ie]

  str為屬性值

  str:是否新開窗口
true或false


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19366.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.