1.window常用的屬性: ①history ②location 2.history對象的方法: ①back() ②forward() ③go() 3.location對象的屬性: ①host() ②hostname() ③href() 4.location對象的方法: ①reload() ②re ...
1.window常用的屬性:
①history
②location
2.history對象的方法:
①back()
②forward()
③go()
3.location對象的屬性:
①host()
②hostname()
③href()
4.location對象的方法:
①reload()
②replace()
5.window對象常用的方法:
①prompt()
②alert()
③confirm()
④close()
⑤open()
⑥setTimeout()
⑦setInterval()
6.window對象常用的事件:
①onload()
②onmouseover()
③onclick()
④onkeydown()
⑤onchange()
7.document對象的常用屬性:
①referrer
②URL
8.document對象的常用方法:
①getElementById()(用於訪問唯一的元素)
②getElementsByName()(用於訪問相同name屬性的一組元素)
③getElementsByTagName()(用於訪問相同標簽的一組元素)
④write()
9.Math的常用方法:
①ceil()
②floor()
③round()
④random()
10.Date對象的常用方法:
①getDate()
②getDay()
③getHours()
④getMinutes()
⑤getSeconds()
⑥getMonth()
⑦getFullYear()
⑧getTime()
11.JavaScript中提供了兩個定時函數: setTimeout() 和 setInterval()
兩個清除函數: clearTimeout()和 clearInterval()