python中的內置對象:1.screen對象,獲取有關客戶端顯示屏幕的信息;2.location對象,用于獲取指定地址的對象;3.document對象,用于獲取頁面中的元素;
python中有以下幾種常見的內置對象
1.screen
python中screen對象的作用是用于獲取有關客戶端顯示屏幕的信息,其中包括availHeight(獲取屏幕高度)、availWidth(獲取屏幕寬度)、pixelDepth(獲取屏幕的顏色分辨率)等功能。
2.location
python中location對象的作用是用于獲取指定地址的對象,包括location.href獲取或者重定url地址、location.search獲取地址參數、location.hash獲取頁面哈希值等。
3.document
python中document對象的作用是用于獲取頁面中的元素,包括document.getElementById通過標簽名獲取元素、document.getElementsByTagName通過標簽名獲取元素等。