...一個區(qū)域(圖像映射指的是帶有可點擊區(qū)域的圖像) 在 HTML 文檔中 <area> 標簽每出現(xiàn)一次,就會創(chuàng)建一個 Area 對象。 Area 對象屬性 W3C: W3C 標準: 屬性 描述 W3C alt 設置或返回當瀏覽器無法顯示某個區(qū)域時的替換文字。 Yes co...
http://o2fo.com/jsref/dom-obj-area.htmlHTML DOM createAttribute() 方法 Document 對象實例創(chuàng)建 class 屬性, 屬性值為 "democlass", 并將clas屬性添加到H1 元素中:var att=document.createAttribute("class");att.value="democlass";document.getElementsByTagName("H1")[0].setAttributeNode(att);元素添加屬性前:Hello World...
http://o2fo.com/jsref/met-document-createattribute.htmlHTML DOM createDocumentFragment() 方法 Document 對象實例創(chuàng)建一個 documentFragment 節(jié)點:var d=document.createDocumentFragment();d.appendChild(document.getElementsByTagName("LI")[0]);d.childNodes[0].childNodes[0].nodeValue="Milk";document.getElementsByTagName("UL")[0].appendChild(d);輸出...
http://o2fo.com/jsref/met-document-createdocumentfragment.htmlHTML DOM activeElement 屬性 Document 對象實例當前獲得焦點的元素:var x = document.activeElement.tagName;x 輸出結果為:BUTTON嘗試一下?定義和使用activeElement 屬性返回文檔中當前獲得焦點的元素。注意: 該屬性是只讀的。提示: 為元素設置焦...
http://o2fo.com/jsref/prop-document-activeelement.htmlHTML DOM importNode() 方法 Document 對象實例返回iframe中第一個 H1 元素:var frame=document.getElementsByTagName("iframe")[0]var h=frame.contentWindow.document.getElementsByTagName("h1")[0];var x=document.importNode(h,true);嘗試一下 ?定義和用法importNode() 方法把一個節(jié)點...
http://o2fo.com/jsref/met-document-importnode.htmlHTML DOM renameNode() 方法 Document 對象實例重新命名 p 元素:var p=document.getElementsByTagName("P")[0];document.renameNode(p,null,"h1");定義和用法renameNode() 方法重命名已有的元素節(jié)點或屬性節(jié)點。瀏覽器支持目前沒有主流瀏覽器支持 renameNode() 方法...
http://o2fo.com/jsref/met-document-renamenode.htmlHTML DOM inputEncoding 屬性 Document 對象實例顯示當前文檔的字符編碼:document.inputEncoding;輸出結果:UTF-8嘗試一下 ?定義和用法inputEncoding 屬性可返回文檔的編碼(在解析時)。如果問的在內(nèi)存中創(chuàng)建返回 null 。瀏覽器支持除了 Opera瀏...
http://o2fo.com/jsref/prop-document-inputencoding.htmlHTML DOM normalize() 方法 Document 對象實例規(guī)范一個文檔:document.normalize(); 嘗試一下 ?定義和用法normalize 方法合并相鄰的文本節(jié)點并刪除空的文本節(jié)點。瀏覽器支持所有主要瀏覽器都支持 normalize 方法語法node.normalize()參數(shù)None.返回值...
http://o2fo.com/jsref/met-document-normalize.htmlHTML DOM normalizeDocument() 方法 Document 對象實例規(guī)范一個實體文檔:document.normalizeDocument();定義和用法normalizeDocument() 方法可以移除空文本節(jié)點 , 并合并相鄰節(jié)點。目前沒有主流瀏覽器支持 normalizeDocument() 方法, 但是可以使用類似的方...
http://o2fo.com/jsref/met-document-normalizedocument.htmlHTML DOM getElementsByName() 方法 Document 對象定義和用法getElementsByName() 方法可返回帶有指定名稱的對象的集合。語法document.getElementsByName(name)參數(shù) 描述 name 必須。元素的名稱。 瀏覽器支持 所有主要瀏覽器都支持 getElementsByNam...
http://o2fo.com/jsref/met-doc-getelementsbyname.html抱歉,暫時沒有相關的微課
w3cschool 建議您:
抱歉,暫時沒有相關的視頻課程
w3cschool 建議您:
抱歉,暫時沒有相關的教程
w3cschool 建議您:
...一個區(qū)域(圖像映射指的是帶有可點擊區(qū)域的圖像) 在 HTML 文檔中 <area> 標簽每出現(xiàn)一次,就會創(chuàng)建一個 Area 對象。 Area 對象屬性 W3C: W3C 標準: 屬性 描述 W3C alt 設置或返回當瀏覽器無法顯示某個區(qū)域時的替換文字。 Yes co...
http://o2fo.com/jsref/dom-obj-area.htmlHTML DOM createAttribute() 方法 Document 對象實例創(chuàng)建 class 屬性, 屬性值為 "democlass", 并將clas屬性添加到H1 元素中:var att=document.createAttribute("class");att.value="democlass";document.getElementsByTagName("H1")[0].setAttributeNode(att);元素添加屬性前:Hello World...
http://o2fo.com/jsref/met-document-createattribute.htmlHTML DOM createDocumentFragment() 方法 Document 對象實例創(chuàng)建一個 documentFragment 節(jié)點:var d=document.createDocumentFragment();d.appendChild(document.getElementsByTagName("LI")[0]);d.childNodes[0].childNodes[0].nodeValue="Milk";document.getElementsByTagName("UL")[0].appendChild(d);輸出...
http://o2fo.com/jsref/met-document-createdocumentfragment.htmlHTML DOM activeElement 屬性 Document 對象實例當前獲得焦點的元素:var x = document.activeElement.tagName;x 輸出結果為:BUTTON嘗試一下?定義和使用activeElement 屬性返回文檔中當前獲得焦點的元素。注意: 該屬性是只讀的。提示: 為元素設置焦...
http://o2fo.com/jsref/prop-document-activeelement.htmlHTML DOM importNode() 方法 Document 對象實例返回iframe中第一個 H1 元素:var frame=document.getElementsByTagName("iframe")[0]var h=frame.contentWindow.document.getElementsByTagName("h1")[0];var x=document.importNode(h,true);嘗試一下 ?定義和用法importNode() 方法把一個節(jié)點...
http://o2fo.com/jsref/met-document-importnode.htmlHTML DOM renameNode() 方法 Document 對象實例重新命名 p 元素:var p=document.getElementsByTagName("P")[0];document.renameNode(p,null,"h1");定義和用法renameNode() 方法重命名已有的元素節(jié)點或屬性節(jié)點。瀏覽器支持目前沒有主流瀏覽器支持 renameNode() 方法...
http://o2fo.com/jsref/met-document-renamenode.htmlHTML DOM inputEncoding 屬性 Document 對象實例顯示當前文檔的字符編碼:document.inputEncoding;輸出結果:UTF-8嘗試一下 ?定義和用法inputEncoding 屬性可返回文檔的編碼(在解析時)。如果問的在內(nèi)存中創(chuàng)建返回 null 。瀏覽器支持除了 Opera瀏...
http://o2fo.com/jsref/prop-document-inputencoding.htmlHTML DOM normalize() 方法 Document 對象實例規(guī)范一個文檔:document.normalize(); 嘗試一下 ?定義和用法normalize 方法合并相鄰的文本節(jié)點并刪除空的文本節(jié)點。瀏覽器支持所有主要瀏覽器都支持 normalize 方法語法node.normalize()參數(shù)None.返回值...
http://o2fo.com/jsref/met-document-normalize.htmlHTML DOM normalizeDocument() 方法 Document 對象實例規(guī)范一個實體文檔:document.normalizeDocument();定義和用法normalizeDocument() 方法可以移除空文本節(jié)點 , 并合并相鄰節(jié)點。目前沒有主流瀏覽器支持 normalizeDocument() 方法, 但是可以使用類似的方...
http://o2fo.com/jsref/met-document-normalizedocument.htmlHTML DOM getElementsByName() 方法 Document 對象定義和用法getElementsByName() 方法可返回帶有指定名稱的對象的集合。語法document.getElementsByName(name)參數(shù) 描述 name 必須。元素的名稱。 瀏覽器支持 所有主要瀏覽器都支持 getElementsByNam...
http://o2fo.com/jsref/met-doc-getelementsbyname.html抱歉,暫時沒有相關的文章
w3cschool 建議您: