1. 程式人生 > >對JS中global、window、document、this區別的理解

對JS中global、window、document、this區別的理解

區別:1、window 指窗體。document指頁面。document是window的一個子物件。         2、使用者不能改變 document.location(因為這是當前顯示文件的位置)。但是,可以改變window.location (用其它文件取代當前文件)window.location本身也是一個物件,而document.location不是物件 3、Window物件:http://www.w3school.com.cn/htmldom/dom_obj_window.asp      Document物件:http://www.w3school.com.cn/htmldom/dom_obj_document.asp