1. 程式人生 > >document物件的屬性和方法

document物件的屬性和方法

document屬性:

activeElement = [object]
alinkColor = #0000ff
all = [object]
anchors = [object]
applets = [object]
attributes = null
bgColor = #336699
body = [object]
childNodes = [object]
compatMode = BackCompat
cookie = style=null
defaultCharset = gb2312
dir =
doctype = null
documentElement = [object]
domain =
embeds = [object]
fgColor = #000000
fileCreatedDate = 07/04/2003
fileModifiedDate = 07/07/2003
fileSize = 5514
fileUpdatedDate =
firstChild = [object]
forms = [object]
frames = [object]
images = [object]
implementation = [object]
lastChild = [object]
lastModified = 07/07/2003 10:38:04    
linkColor = #0000ff
links = [object]
location = file:///E:/文章/網頁物件.htm     
media =
mimeType = HTML Document
nameProp = 物件屬性顯示器
namespaces = [object]
nextSibling = null
nodeName = #document
nodeType = 9
nodeValue = null
onactivate = null
onafterupdate = null
onbeforeactivate = null
onbeforedeactivate = null
onbeforeeditfocus = null
onbeforeupdate = null
oncellchange = null
onclick = null
oncontextmenu = null
oncontrolselect = null
ondataavailable = null
ondatasetchanged = null
ondatasetcomplete = null
ondblclick = null
ondeactivate = null
ondragstart = null
onerrorupdate = null
onfocusin = null
onfocusout = null
onhelp = null
onkeydown = null
onkeypress = null
onkeyup = null
onmousedown = null
onmousemove = null
onmouseout = null
onmouseover = null
onmouseup = null
onmousewheel = null
onpropertychange = null
onreadystatechange = null
onrowenter = null
onrowexit = null
onrowsdelete = null
onrowsinserted = null
onselectionchange = null
onselectstart = null
onstop = null
ownerDocument = null
parentNode = null
parentWindow = [object]
plugins = [object]
previousSibling = null
protocol = File Protocol
readyState = complete
referrer =
scripts = [object]
security = 這種型別的文件沒有安全證書。
selection = [object]
styleSheets = [object]
title = 物件屬性顯示器
URL = file://E:/文章/網頁物件.htm
URLUnencoded = file://E:/文章/網頁物件.htm
vlinkColor = #800080

document方法:

open( )
close( )
clear( )
write( )
writeln( )


getElementById(id)                                        返回指定元素的引用
getElementsByName(elementName)      返回name="elementName"的所有XHTML元素物件的列表
getElementsByTagName(name)              返回文件中所有匹配的元素的集合

createComment(data)                                 建立XHTML註釋<!--data-->
createElement(name)                                  建立指定型別的新元素
createTextNode(text)                                     建立一個純文字結點


element方法:

getAttribute(id)                                  返回指定屬性的值
setAttribute(id,value)                             給屬性賦值
removeAttribute(id)                               移除指定屬性和它的值
getElementsByTagName(name)         返回結點內所有匹配的元素的集合

node方法:

appendChild(child)                                  給指定結點新增一個新的子結點
removeChild(child)                                   移除指定結點的子結點
replaceChild(newChild,oldChild)          替換指定結點的子結點
insertBefore(newChild,refChild)            在同一層級的結點前面插入新結點
hasChildNodes()                                      如果結點有子結點則返回true

node屬性:

nodeName                                       以字串的格式存放結點的名稱
nodeType                                         以整型資料格式存放結點的型別
nodeValue                                        以可用的格式存放結點的值
parentNode                                      指向結點的父結點的引用
childNodes                                      指向子結點的引用的集合
firstChild                                           指向子結點結合中的第一個子結點的引用
lastChild                                           指向子結點結合中的最後一個子結點的引用

相關推薦

document 物件屬性方法[Quote]

節點的屬性和方法:  <element>.appendChild(childNode) :appendChild方法將指定的節點增加到當前元素的子節點列表(作為一個新的子節點).例如,可以增加一個option元素,作為select元素的子節點.  <element>.getAttrib

string 物件屬性方法

string 物件屬性 constructor:對建立該物件的函式的引用; length:字串的長度; prototype:允許像物件新增屬性和方法 string 物件方法   var str1="123456"; var str2="asdfgh";   1: docu

AJAX-XMLHttpRequest物件屬性方法詳解

【1】 XMLHttpRequest是什麼 XMLHttpRequest物件是Ajax技術的核心。在Internet Explorer 5中,XMLHttpRequest物件以ActiveX物件引入,被稱之為XMLHTTP,它是一種支援非同步請求的技術。後來Mo

JavaScript遍歷物件屬性方法

JavaScript 使用 for in 語句來遍歷物件的屬性和方法。for in 語句迴圈遍歷 JavaScript 物件,每迴圈一次,都會取得物件的一個屬性或方法。 語法:for(valueName  in  ObjectName){     // 程式碼 } 其中,v

JavaScript中的陣列物件屬性方法

日常程式碼中經常會對程式碼進行一些操作,複製、排序、查詢、遍歷等等,一些陣列的方法總是記不住,所以寫篇日記總結一下。 1. 陣列的建立與賦值 建立一個數組,有三種方法。 下面的程式碼定義了一個

熟悉 js window 物件屬性方法

熟練window物件的open、close、alert、confirm、prompt、setTimeout、clearTimeout、setInterval、clearInterval、moveBy、resizeBy、scrollBy方法的使用掌握window物件的moveTo、resizeTo、scroll

java物件屬性方法的引用

物件方法的引用通過物件名.方法名引用。如有以下方法: public void work(){} public void work(int h){} 物件名是work,那麼物件方法的引用就是work.w

JavaScript HTML DOM節點型別之Document型別(Document物件屬性Document物件集合屬性

ocument物件使我們可以用JavaScript對 HTML 頁面中的所有元素進行訪問。要訪問 HTML 頁面中元素,除可以用Document物件中的方法外,還可以通過Document物件的屬性。Document物件的屬性和方法中有的可返回單個Element元素物件,有

Array物件屬性方法參考

快速搜尋:ctrl+f 建立Array物件 通過new關鍵字: var arr1=new Array(); var arr2=new Array(5); //初始化陣列大小為5 var

document物件屬性方法

document屬性:activeElement = [object]alinkColor = #0000ffall = [object]anchors = [object]applets = [object]attributes = nullbgColor = #33669

Document物件常用屬性方法

物件屬性document.title                                  //設定文件標題等價於HTML的title標籤document.bgColor                                //設定頁面背景色docume

window.document屬性方法事件的總結

http 兄弟節點 保留 前綴 ron 匹配 eno form link document屬性作為window對象的一個子對象被創建,是用於訪問頁面中所有元素的對象,這裏簡單整理下,方便學習js的朋友javascript中window.document的屬性、方法和事件的總

jQuery原始碼解析(jQuery物件的例項屬性方法

1、記錄版本號 以及 修正constructor指向 jquery: core_version, constructor: jQuery,   因為jQuery.prototype={ ... } 這種寫法將自動生成的jQuery.prototype.constructor

python3__面向物件__靜態方法 / 類方法 / 屬性方法 / 例項動態繫結屬性方法 / 類動態繫結屬性方法

0.普通方法 普通方法訪問類屬性:self.__class__.類屬性名稱 class Test(object): n = 123 def __init__(self, n): self.n = n def tell(self):

python3面向物件(3)私有屬性方法以及訪問私有屬性方法的方式

python3中的私有屬性和方法是以__兩個下劃線開頭的: class Woman(object): #定義一個woman類 def __init__(self,name): self.name = name #公有屬性 self

Django中WSGIRequest(HttpRequest)物件常用屬性方法

Django在接收到http請求之後,會根據http請求攜帶的引數以及報文資訊建立一個WSGIRequest物件,並且作為檢視函式第一個引數傳給檢視函式。也就是我們經常看到的request引數。在這個物件上我們可以找到客戶端上傳上來的所有資訊。這個物件的完整路徑是django.core.ha

03Thread物件的其他屬性方法.py

Thread物件的其他屬性或方法 介紹 Thread例項物件的方法 # isAlive(): 返回執行緒是否活動的。 # getName(): 返回執行緒名。 # setName(): 設定執行緒名。 threading模組提供的一些方法: # threading.currentThre

學習Java之通過物件識別符號可操作物件的哪些屬性方法的點滴體會

再說這個主題的時候,我們先大致看一下我畫的有點不可觀賞的類檔案的關係圖。通過上圖,我們知道一類物件的物件描述檔案類檔案之間是有相互關聯關係的。 所以,對於一個具體物件而言,此物件的屬性和方法就有可能被在不同的物件描述檔案中所描述。例如:當我們使用物件描述檔案要描述花這個物件的時候,對於花的

物件增加屬性方法()

為物件增加屬性和方法   所有物件除了都會有Object型別的屬性和方法之外,和可以增加自己的屬性和方法。下面依次記寫兩種建立物件例項並新增屬性、方法的程式碼。 第一種: var people = new Object(); people.name = "Vir

JS引用型別中的Function型別——函式屬性方法【this,arguments物件;apply(),call方法

一,瞭解函式 1,函式實際是物件,每個函式都是Function型別的例項,而且都與其他引用型別一樣具有屬性和方法,由於函式是物件,因此函式名實際上也是一個指向函式物件的指標,不會與某個函式繫結。 2,函式沒有過載,當聲明瞭兩個同名函式時結果會是後面的函式覆蓋前面的函式。