电脑故障

位置:IT落伍者 >> 电脑故障 >> 浏览文章

IE里Window的Method列表


发布日期:2018/8/31
 

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

上一篇:Greenfoot 快速入门

下一篇:破解网页禁止鼠标右键的技巧