node == document.getElementsByTagName()[0,1,2,...,n];
node.firstChild == document.getElementsByTagName()[0].childNodes[0];
node.firstChild == document.getElementsByTagName()[0].childNodes[0];
2014-12-08
window.history:記錄用戶曾經瀏覽的頁面url,實現類似前進與倒退的功能
go():加載history列表的某個url
back():加載history列表的上一個url
forward():加載history的下一url
go():加載history列表的某個url
back():加載history列表的上一個url
forward():加載history的下一url
2014-12-07