// 高度
window.innerheight
// 寬度
window.innerwidth
console.log( innerheight,innerwidth );
window.onload = function()
//只要瀏覽器的尺寸發生了改變,這個事件就會執行
window.onresize = function
()
//只要瀏覽器的滾動條滾動了,就會執行
window.onscroll = function
()
獲取文件向下滾動的距離,以下兩個都可以:
window.onscroll = function()
注意:這兩個的區別在於當前文件有沒有doctype
,有就用document.documentelement.scrolltop
,沒有就用document.body.scrolltop
獲取頁面向右滾動的距離:
使用方式同上。
這兩個方法在ie和edge下有相容性問題。
使用相容寫法:
var t = document.documentelement.scrolltop ||document.body.scrolltop;var t = document.documentelement.scrollleft || document.body.scrollleft;
window命令操作
help 幫助 tree 列目錄樹 dir 返回當前目錄的子資料夾和檔案 dir s 檢視當前目錄以及子目錄的檔案和資料夾 dir a 檢視包含隱藏檔案的所有檔案和資料夾 dir p 以分頁的形式顯示 dir s p等等組合形式都可以 dir ah 只顯示隱藏的檔案 dir w 以緊湊的方式顯示資料...
window操作相關
window e開啟我的電腦 winkey f 搜尋 在桌面可以直接f3 winkey r 開啟執行搜尋 alt tab 開啟視窗過多 可以用這個切換 winkey 開啟開始選單 ctrl n 開啟新的當前程式window命令 dir directory 列出當前目錄下的檔案以及資料夾 md mak...
window操作技巧
word中符號替換 1.在網頁複製內容時,下箭頭用 l 表示 字母l小寫 回車用 p 表示,可用替換命令全域性替換 ctrl f 2.新增底紋選單在 邊框 項下 開始 圖示最後乙個邊框 選單的最後一項即為 邊框和底紋 網路設定優先順序 一般情況下,無線網路和有線網路同時聯網時,有線網路優先順序大於無...