jquery擷取元素的寬度

來源:互聯網
上載者:User

標籤:lock   charset   line   擷取   邊框   內容   html   logs   需要   

  jquery 是一個很好用的庫,封裝了很多易使用的簡易 api,方便開發人員進行 dom 操作。

  今天討論的是擷取元素的寬度,有個小坑需要踩踩,這裡記錄下:

<!DOCTYPE html><html>    <head>        <meta charset=‘utf-8‘>        <script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>        <style>            .d1 {                display: inline-block;                width: 200px;                height: 200px;                border: 1px solid #eee;            }        </style>    </head>    <body>        <div class=‘d1‘></div>        <script>            console.log($(‘.d1‘).width());            console.log($(‘.d1‘).outerWidth());        </script>    </body></html>

  這裡我是用了兩個 api ,一個是 width(),另一個是 outerWidth(),當你想獲得的元素是個有邊框的元素,並且你將使用它的實際佔用寬度,那麼就要用 outerWidth() 來擷取,2像素不起眼。。。但是會搞亂全部布局~

  兩個 console.log ,第一個輸出 200,第二個則是 202,見過就記住嗷,width() 擷取到的是元素內容寬度。outerWidth() 擷取元素佔位寬度。

jquery擷取元素的寬度

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.