前沿拓展:
ie 11
1、你需要看一下這些Zip壓縮文件是不是屬于
哪一個(gè)應(yīng)用程序。如果是在安裝目錄下的,最好謹(jǐn)慎對(duì)待。
2、可以雙擊看一下內(nèi)容,是你需要的就留下,不需要的就刪除。
3、即使不小心刪除了某一個(gè)Zip文件,因?yàn)镈盤為非系統(tǒng)文件,系統(tǒng)不會(huì)因此而崩潰,但有可能導(dǎo)致某一應(yīng)用程序因缺少文件而無法打開。
4、如果你一定要將其刪除,請(qǐng)先放入回收站,因?yàn)槿f(wàn)一出了問題,還可以將其恢復(fù)。
大家好,今天我們來花 1 分鐘來學(xué)習(xí) DOM 相關(guān)的基礎(chǔ)**作的第三部分,內(nèi)容雖然簡(jiǎn)單,但是還是有必要?dú)w納小編綜合來說的,希望這些整理對(duì)大家有所幫助。
1、檢測(cè)元素是否聚焦
假設(shè) ele 表示您要檢查它當(dāng)前是否具有焦點(diǎn)的元素:
const hasFocus = ele === document.activeElement;2、檢測(cè) Internet Explorer 瀏覽器const isIe = function () {
const ua = window.navigator.userAgent;
return ua.indexOf('MSIE') > -1 || ua.indexOf('Trident') > -1;};
我們也可以依賴 document.documentMode。該屬性表示文檔的文檔兼容模式,在 IE 5-11 中為整數(shù)。其他瀏覽器返回未定義。
const isIE = !!document.documentMode;3、檢測(cè) mac OS 瀏覽器
檢查當(dāng)前瀏覽器是否在 Mac 上運(yùn)行:
const i**acBrowser = /Mac|iPod|iPhone|iPad/.test(navigator.platform);4、檢測(cè)移動(dòng)瀏覽器
以下是檢查用戶是否從移動(dòng)瀏覽器瀏覽的幾種方法。
檢查瀏覽器是否支持pointer:coarse媒體查詢
const i**obile = function () {
const match = window.matchMedia('(pointer:coarse)');
return match && match.matches;};
我們不能依賴屏幕尺寸,因?yàn)橐苿?dòng)設(shè)備越來越大。
5、檢測(cè)暗黑模式
macOS、Windows 10 等現(xiàn)代**作系統(tǒng)允許用戶選擇他們希望在所有應(yīng)用程序中設(shè)置暗黑和明亮模式。
以下屏幕截圖取自 macOS 的常規(guī)設(shè)置的窗格:
可以通過查看 prefers-color-scheme 媒體查詢來檢測(cè)該選項(xiàng)。
它可以是以下值之一:
light:用戶希望在 light 模式下查看頁(yè)面dark:用戶希望在暗黑模式下查看頁(yè)面no-preference:系統(tǒng)不知道用戶的偏好
通過檢查這個(gè)媒體查詢值,我們可以確定用戶設(shè)置的系統(tǒng)模式:
const isDarkMode = window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches;6、確定元素的高度和寬度
假設(shè) ele 表示要計(jì)算大小的元素的 DOM。
// 獲取 styles
const styles = window.getComputedStyle(ele);
// 不包含 padding and border
const height = ele.clientHeight – parseFloat(styles.paddingTop) – parseFloat(styles.paddingBottom);
const width = ele.clientWidth – parseFloat(styles.paddingLeft) – parseFloat(styles.paddingRight);
// 只包含 padding
const clientHeight = ele.clientHeight;
const clientWidth = ele.clientWidth;
// 包含 padding and border
const offsetHeight = ele.offsetHeight;
const offsetWidth = ele.offsetWidth;
// 包含 padding, border and margin
const heightWithMargin = ele.offsetHeight + parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);
const widthWithMargin = ele.offsetWidth + parseFloat(styles.marginLeft) + parseFloat(styles.marginRight);小編綜合來說
由于時(shí)間原因,今天分享的 DOM 基礎(chǔ)**作專題就分享到這里,感謝你的閱讀,如果你喜歡我的分享,別忘了點(diǎn)贊轉(zhuǎn)發(fā),讓更多的人看到,最后別忘記點(diǎn)個(gè)關(guān)注,你的支持將是我分享最大的動(dòng)力,后續(xù)我會(huì)持續(xù)輸出更多內(nèi)容,敬請(qǐng)期待。
來源:https://github.com/1milligram/html-dom
推薦閱讀
1 分鐘學(xué) 6 個(gè)常見的 DOM 基礎(chǔ)**作(一)
1 分鐘學(xué) 6 個(gè)常見的 DOM 基礎(chǔ)**作(二)
拓展知識(shí):
原創(chuàng)文章,作者:九賢生活小編,如若轉(zhuǎn)載,請(qǐng)注明出處:http://xiesong.cn/27301.html