一.訪問元素的屬性
A.核心Dom
1.獲得屬性值:
getAttrbuite('屬性名')捏悬;
2.設(shè)置屬性:
setAttribute('屬性名','值')捺癞;
3.移除屬性:
removeAttribute('屬性名')谍椅;
4.判斷是否有屬性:
hasAttribute('屬性名');
B.HTML Dom
ele.屬性名
C.自定義屬性:
訪問時:ele.dataset.屬性名弧械;
二粗仓、Dom中的增加和刪除
1.增加
1)增加一個空元素
var ele = document.createElement('ele');
2)給元素添加屬性
ele.屬性='值'
3)把元素追加到父元素下
father.appendChld(ele);
4)刪除元素
parent.removeChild(child);
三蜕乡、數(shù)學(xué)對象
Math
Math.max:求最大值
console.log(Math.max(1,2,3,4,5,6,7));
Math.min:求最大值
console.log(Math.min(1,2,3,4,5,6,7));
問題:不支持?jǐn)?shù)組參數(shù)
解決:
Math.min.apply(null,[1,2,3])
Math.max.apply(null,[1,2,3])
四.日期對象 Date
1.創(chuàng)建一個日期對象
var date=new Date();//獲取當(dāng)前日期
2.創(chuàng)建一個日期對象奸绷,封裝自定義時間
var date=new Date('yy/MM/dd hh:mm:ss');
日期對象中封裝的是一個從1970年1月1日0點至今的毫秒數(shù)
3.日期對象API:
FullYear:年
Month:月
Date:日期
Day:星期
Hours:時
Minutes:分
Seconds:秒
Milliseconds:毫秒