DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> Javascript基礎知識(三)BOM,DOM總結
Javascript基礎知識(三)BOM,DOM總結
編輯:JavaScript基礎知識     

window對象:

打開和關閉窗口:

window.open()

三個參數:1.載入新窗口的頁面的URL

  2.新窗口的名字

  3.特性字符串和說明是否用新載入的頁面替換當前載入的頁面的Boolean值。

window.close()

系統對話框:

1.alert("hello world!");

2.confirm("Are you sure?");---選擇

3.prompt("你的名字是說明?","");

時間間隔

setTimeout("alert('hello world!')",3000)間隔3秒鐘執行hello world只執行一次

cleanTimeout

setInterval("alert('hello world')".3000)每隔3秒中執行一次

CleanInterval

歷史

window.history.go(-1)回到上一頁

window.history.back回到上一頁

window.history.go(1)前進一頁

window.history.forward前進一頁

window.history.length查詢看歷史中的頁面數

document對象:

document.links[0]訪問鏈接

document.images[0]或document.images["imgHome"]訪問圖像

document.forms[0]或document.forms["frmSubscribe"]訪問表單

Location對象

href:當前載入的頁面的完整的URL

DOM中最主要的節點:

1.元素節點(Elenment);

2.屬性節點(Attributes);

3.文本節點(Text);

4.注釋節點(Comment);

所有類型節點的通用方法:

查找:

nodeName:節點名字

nodeValue:節點的值(主要針對文本節點,如果是元素節點返回為null;)

nodeType:節點的類型

firstChild:第一個兒子*****

lastChild:第二個兒子*****

childNodes:所有的子節點*****(兩種方式)////

previousSibling:指向前一個兄弟節點(同級**);

nextSibling:指向後一個兄弟節點(同級**);

操作:

attributes:包含了代表的一個元素的特性的Attr對象,僅用於Element節點

appendChild:添加一個新的節點在最後

removeChild:刪除一個節點

replaceChild:替換

insertBefore:在...之前添加一個節點

創建:

createElement:創建一個元素節點

createTextNode:創建一個文本節點

克隆:

cloneNode:復制一個節點  true(深度復制)false(淺度復制)

訪問指定的節點:

getElementById:查找指定的Id;

getElementsByTagName:查找指定元素的類型(數組的形式);

getElementsName:查找指定元素的Name;

屬性的查找,改變,設置:

getArrtibute:屬性的查找;

setArrtibute:屬性的改變  例如:setArribute(class,red)第一個參數是改變class,第二個設置為紅色;

removeAttibute:刪除屬性;

覆蓋,添加文本的值:

innerHTML

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved