IHTMLDocument2方法 | 说明 |
write | 写入 |
writeln | 写入并换行 |
open | 打开一个流,以收集 document.write 或 document.writeln 的输出 |
close | 关闭并输出用 document.open 方法打开的流 |
clear | 清空文档中所有元素, 可能暂时不支持 |
queryCommandSupported | 是否支持指定命令 |
queryCommandEnabled | 指定命令是否有效 |
queryCommandState | 是否设置了指定命令 |
queryCommandIndeterm | 指定命令是否处于不确定状态 |
queryCommandText | 命令 |
queryCommandValue | 命令值 |
execCommand | 执行命令 |
execCommandShowHelp | 命令帮助信息 |
createElement | 建立元素 |
elementFromPoint | 指定坐标下的元素 |
createStyleSheet | 创建一个样式表 |
IHTMLDocument2属性 | 说明 |
all | 所有 HTML 元素的集合 |
images | 所有 image 对象的集合 |
applets | 所有 applet 对象的集合 |
links | 所有 link 对象的集合 |
forms | 所有 form 对象的集合 |
anchors | 所有 anchor 对象的集合 |
scripts | 所有 script 对象的集合 |
frames | 所有 frame 对象的集合 |
embeds | 所有 embed 对象的集合 |
plugins |
所有Plugin |
styleSheets |
样式表集合 |
title |
网页标题 |
body |
body对象 |
activeElement |
当前具有输入焦点的元素 |
designMode |
设计模式, 可选值: Inherit On Off |
selection |
当前选择 |
readyState |
页面读取状态: uninitialized、loading、loaded、interactive、completed |
linkColor |
链接的颜色 |
alinkColor |
活动链接的颜色 |
vlinkColor |
已访问过的链接的颜色 |
bgColor |
背景颜色 |
fgColor |
文本颜色 |
referrer |
返回载入当前页面的页面的 URL |
location |
同 window.location |
lastModified |
返回文档最后修改的日期和时间 |
url |
返回当前文档的 URL |
domain |
返回域名 |
cookie |
返回文档相关的 cookie |
expando |
可设置与获取的布尔值, 是否允许扩展 |
charset |
获取文档的字符集名称 |
defaultCharset |
获取浏览器默认的字符集名称 |
mimeType |
文档类型 |
fileSize |
文档大小, 单位字节, 用字符串表示 |
fileCreatedDate |
文档建立时间 |
fileModifiedDate |
文档修改时间 |
fileUpdatedDate |
文档更新时间 |
security |
文档安全 |
protocol |
传输协议 |
parentWindow |
父窗口 |
IHTMLDocument3事件 | 说明 |
onhelp | 用F1获取帮助时 |
onlick | 单击时 |
ondblclick |
双击时 |
onmousedown |
鼠标点下时 |
onmouseup |
鼠标抬起时 |
onmousemove |
鼠标移动时 |
onmouseover |
鼠标进入时 |
onmouseout |
鼠标离开时 |
onkeypress |
按键时 |
onkeyup |
键抬起时 |
onkeydown |
状态改变时 |
onreadystatechange |
当前数据源的数据将要发生变化时 |
onrowexit |
当前数据源的数据发生变化并且有新的数据时 |
onrowenter |
开始拖动时 |
ondragstart |
开始选择时 |
onselectstart |
更新前 |
onbeforeupdate |
更新后 |
onafterupdate |
更新错误时 |
时间: 2024-10-19 07:30:50