程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> TWebBrowser 與 MSHTML(5): document 對象的屬性、方法、事件縱覽

TWebBrowser 與 MSHTML(5): document 對象的屬性、方法、事件縱覽

編輯:Delphi
v

{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 對象的集合, 這應該和 window.frames 是一樣的
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       //傳輸協議
nameProp       //文件標題, 好像同 Title
parentWindow     //父窗口
Script        //

{IHtmlDocument2 事件:}
onhelp        //用 F1 獲取幫助時
onclick        //單擊時
ondblclick      //雙擊時
onmousedown      //鼠標點下時
onmouseup       //鼠標抬起時
onmousemove      //鼠標移動時
onmouSEOver      //鼠標進入時
onmouSEOut      //鼠標離開時
onkeypress      //按鍵時
onkeyup        //鍵按住時
onkeydown       //鍵抬起時
onreadystatechange  //狀態改變時
onrowexit       //當前數據源的數據將要發生變化時
onrowenter      //當前數據源的數據發生變化並且有新的數據時
ondragstart      //開始拖動時
onselectstart     //開始選擇時
onbeforeupdate    //更新前
onafterupdate     //更新後
onerrorupdate     //更新錯誤時


{IHtmlDocument3 方法:}
recalc        //重新獲取文檔中的全部動態屬性
releaseCapture    //釋放文檔中對象的鼠標捕捉

{IHtmlDocument3 屬性:}
createTextNode    //建立文本
attachEvent      //綁定事件
detachEvent      //取消事件綁定
createDocumentFragment//創建新文檔
getElementsByName   //返回帶有指定 name 的對象集合
getElementById    //返回指定 id 的第一個對象的引用
getElementsByTagName //返回指定標簽的對象集合
documentElement    //獲取文檔根部節點, 也就是 Html 節點
uniqueID       //獲取對象的唯一標識符
dir          //
parentDocument    //
enableDownload
baseUrl        //基礎地址

{IHtmlDocument3 事件:}
onrowsdelete     //當前數據記錄被刪除時
onrowsinserted    //當前數據源將要插入新數據時
oncellchange     //當數據來源發生變化時
ondatasetchanged   //數據源發生變化時
ondataavailable    //當數據接收完成時
ondatasetcomplete   //當數據源的全部有效數據讀取完畢時
onpropertychange   //改變屬性時
oncontextmenu     //當按下鼠標右鍵出現菜單或通過鍵盤觸發頁面菜單時
onstop        //停止或離開時


{IHtmlDocument4 方法:}
focus         //獲得輸入焦點
hasFocus       //是否擁有輸入焦點
createDocumentFromUrl //下載指定網頁並返回其 IHtmlDocument2 接口
CreateEventObject   //生成當使用 fireEvent 方法時用於傳遞事件相關信息的 event 對象 ???
FireEvent

{IHtmlDocument4 屬性:}
createRenderStyle   //建立 IHtmlRenderStyle 接口
namespaces      //
media         //
URLUnencoded     //獲取去除字符編碼的 URL

{IHtmlDocument4 事件:}
onselectionchange   //改變選擇時
oncontrolselect    //好像是框選時


{IHtmlDocument5 方法:}
createAttribute    //建立指定 name 的屬性
createComment     //建立注釋

{IHtmlDocument5 屬性:}
doctype        //文檔類型
implementation_    //獲取 IHtmlDOMImplementation 接口
compatMode      //兼容模式, 返回 BackCompat、CSS1Compat 等

{IHtmlDocument5 事件:}
onmousewheel     //旋轉鼠標滾動輪時
onfocusin       //獲取輸入焦點時
onfocusout      //失去輸入焦點時
onactivate      //激活時
ondeactivate     //當前對象變為父文檔的其他對象時
onbeforeactivate   //onactivate 前
onbeforedeactivate  //ondeactivate 前


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved