色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

JavaScript中clientWidth,offsetWidth,scrollWidth的區(qū)別

瀏覽:121日期:2023-10-05 10:51:31
一、概念

它們都是Element的屬性,表示元素的寬度:

Element.clientWidth 內(nèi)容+內(nèi)邊距-滾動(dòng)條-----不包括邊框和外邊距 == 可視內(nèi)容Element.scrollWidth 內(nèi)容+內(nèi)邊距+溢出尺寸-----不包括邊框和外邊距 ==實(shí)際內(nèi)容Element.offsetWidth 元素的寬度(內(nèi)容+內(nèi)邊距+邊框+滾動(dòng)條)==整體,整個(gè)控件

二、舉例1、僅有橫向滾動(dòng)條的情況

<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>測(cè)試scrollWidth、clientWidth、offsetWidth</title> <style type='text/css'> body, html { margin: 0px; padding: 0px; } #father { width: 300px; overflow: auto; padding: 10px; background: rebeccapurple; border: 10px solid red; margin: 20px; } #child { height: 100px; width: 1000px; padding: 10px; border: 20px solid #ffcc99; margin: 30px; } </style></head><body><div id='father'> <div id='child'></div></div><script type='text/javascript'> var child = document.getElementById('child'); console.log('child.width:', window.getComputedStyle(child).width); //內(nèi)容的寬度:1000px console.log('child.clientWidth:', child.clientWidth); //內(nèi)容+內(nèi)邊距-滾動(dòng)條-----不包括邊框和外邊距 == 可視內(nèi)容 1020px console.log('child.scrollWidth:', child.scrollWidth); //內(nèi)容+內(nèi)邊距+溢出尺寸-----不包括邊框和外邊距 ==實(shí)際內(nèi)容 1020px console.log('child.offsetWidth:', child.offsetWidth); //元素的寬度(內(nèi)容+內(nèi)邊距+邊框+滾動(dòng)條)==整體,整個(gè)控件 1060px var father = document.getElementById('father'); console.log('father.width:', window.getComputedStyle(father).width); //內(nèi)容的寬度:300px console.log('father.clientWidth:', father.clientWidth); //內(nèi)容+內(nèi)邊距-滾動(dòng)條-----不包括邊框和外邊距 == 可視內(nèi)容 320px console.log('father.scrollWidth:', father.scrollWidth); //內(nèi)容+內(nèi)邊距+溢出尺寸-----不包括邊框和外邊距 ==實(shí)際內(nèi)容 1100px console.log('father.offsetWidth:', father.offsetWidth); //元素的寬度(內(nèi)容+內(nèi)邊距+邊框+滾動(dòng)條)==整體,整個(gè)控件 340px</script></body></html>

僅有橫向滾動(dòng)條的情況時(shí),父元素收受到子元素寬度的影響,其他比較特別的是scrollWidth。

父元素的scrollWidth是:子元素的content+padding+border+子元素一邊的margin+父元素一邊的padding。

2、有橫向滾動(dòng)條和豎向滾動(dòng)條的情況

<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>測(cè)試scrollWidth、clientWidth、offsetWidth</title> <style type='text/css'> body, html { margin: 0px; padding: 0px; } #father { height: 50px; width: 300px; overflow: auto; padding: 10px; background: rebeccapurple; border: 10px solid red; margin: 20px; } #child { height: 100px; width: 1000px; padding: 10px; border: 20px solid #ffcc99; margin: 30px; } </style></head><body><div id='father'> <div id='child'></div></div><script type='text/javascript'> var child = document.getElementById('child'); console.log('child.width:', window.getComputedStyle(child).width); //內(nèi)容的寬度:1000px console.log('child.clientWidth:', child.clientWidth); //內(nèi)容+內(nèi)邊距-滾動(dòng)條-----不包括邊框和外邊距 == 可視內(nèi)容 1020px console.log('child.scrollWidth:', child.scrollWidth); //內(nèi)容+內(nèi)邊距+溢出尺寸-----不包括邊框和外邊距 ==實(shí)際內(nèi)容 1020px console.log('child.offsetWidth:', child.offsetWidth); //元素的寬度(內(nèi)容+內(nèi)邊距+邊框+滾動(dòng)條)==整體,整個(gè)控件 1060px var father = document.getElementById('father'); console.log('father.width:', window.getComputedStyle(father).width); //內(nèi)容的寬度:285px console.log('father.clientWidth:', father.clientWidth); //內(nèi)容+內(nèi)邊距-滾動(dòng)條-----不包括邊框和外邊距 == 可視內(nèi)容 305px console.log('father.scrollWidth:', father.scrollWidth); //內(nèi)容+內(nèi)邊距+溢出尺寸-----不包括邊框和外邊距 ==實(shí)際內(nèi)容 1100px console.log('father.offsetWidth:', father.offsetWidth); //元素的寬度(內(nèi)容+內(nèi)邊距+邊框+滾動(dòng)條)==整體,整個(gè)控件 340px</script></body></html>

父元素的width為:父元素的content寬度-滾動(dòng)條的寬度(大約為15px)

父元素的clientWidth為:父元素的content寬度+父元素padding寬度-滾動(dòng)條寬度(大約為15px)

以上就是Element中clientWidth,offsetWidth,scrollWidth的區(qū)別的詳細(xì)內(nèi)容,更多關(guān)于clientWidth,offsetWidth,scrollWidth的區(qū)別的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 亚洲国产精品一区二区久 | 亚洲国产成人在线视频 | 国产91精选在线观看网站 | 国产一久久香蕉国产线看观看 | 亚洲日本va| 99久久精品久久久久久清纯 | 久久精品国产午夜伦班片 | 久久怡红院国产精品 | 在线免费观看成年人视频 | 亚洲国产日韩a在线亚洲 | 国产精品色午夜视频免费看 | 亚洲va久久久噜噜噜久久狠狠 | 欧美精品一区二区三区免费播放 | 香蕉成人在线 | 久久久久毛片成人精品 | 国产一区二区三区成人久久片 | 免费视频亚洲 | 国产大片在线观看 | 国产区一区二区三区 | 美国一级毛片完整高清 | 国产一级视频在线观看 | 国产精品三级在线观看 | 久久免费精彩视频 | 国产在线视频欧美亚综合 | 国产日韩精品欧美一区 | 日韩一区二区三区免费视频 | 国产性较精品视频免费 | 国产精品久久久香蕉 | 久久精品在线观看 | 国产精品二区三区免费播放心 | 久草视频福利在线 | 午夜在线视频一区二区三区 | 欧美在线播放成人免费 | 久久精品国产亚洲7777小说 | 日韩中文字幕免费在线观看 | 国产精品久久久久久久免费 | 国产亚洲欧美成人久久片 | 成人久久18免费网站入口 | 美国一级毛片∞ | 日本人视频网站一 | 成人亚洲欧美日韩中文字幕 |