我們操作最多的就是元素節點(標籤節點 標籤)
節點的訪問關係
父級 parentnode
this.parentnode == 我的父親
兄弟 nextsibling
孩子們
childnodes 官方用法
一般情況下,我們只需要元素節點
nodetype 來 判斷
nodetype == 1 元素節點
nodetype == 2 屬性節點
nodetype == 3 文字節點
內容
children 不是官方寫法 所有的孩子 親兒子
ie 678 把注釋節點 也算 可以避免
節點操作建立 插入 複製 刪除
b 一定是 a 孩子 同時 b 放到了a 的裡面 裝到裡面去了 最後面。 b 放到 a 裡面
a.insertbefore(b,c)
b c 都是 a 的孩子
把 b 放到 a 裡面 ,但是 是 c 的前面
設定節點屬性
1.
獲取節點屬性
getattribute(屬性) 獲取屬性
通過這個方法,可以得到 某些元素的 某些屬性 。
2. 設定節點屬性
setattribute(「屬性」,」值」);
比如說,我們想要把 乙個 類名 改為 demo
div.setattribute(「class」,」demo」);
3. 刪除某個屬性
removeattribute(「屬性」);
demo.removeattribute(「title」)
這個盒子就沒有title 屬性 給刪掉了 。
js內建物件 math array function date string
date.gettime(); 返回 1970 年 1 月 1 日至今的毫秒數。
date.valueof()
常用的日期的方法
getdate() 1-31 返回的是具體某一日
getday() 0-6 返回的是星期幾
getmonth() 0-11 返回的是月份
getfullyear ()
獲取完整年份(瀏覽器都支援)
getminutes ()
獲取分鐘 0-59
getseconds ()
獲取秒 0-59
20161207py學習筆記
正在學習 dive into python,1 if name main 這句話的作用 if name main 寫上這句話,使得py檔案可以被當做模組import,也可以直接execute 2 import自定義模組 一般而言,通過,import sys print sys.path 只要檔案在s...
hive 學習內容
1 hive的正則匹配搜尋表 show tables like sub name show tables like s 以s開頭的所有的 2檢視表結構 desc table name desc formatted table name 3檢視分割槽資訊 show partition table na...
學習內容分享
一 求 兩個數 30.30 和 40 的最大值?public class ex0031 system.out.println 最大值是 max 二 判斷公元1988年是否為閏年?可被4整除 但不可被100整除 為閏年,但是正百的年數必須是可以被400整除的才是閏年 public class ex00...