js動態獲得捲軸寬度 JavaScript,js

來源:互聯網
上載者:User
javascript|js|動態 我現在有一個層,層中有一個div,當內容比較多的時候就出現捲軸,我現在想,當捲軸出現的時候,div中表格的寬度等於div的寬度減去捲軸的寬度,如何才能去動態獲得捲軸的寬度,或者判斷捲軸的狀態既是否出現.
------------------------------------------------------------------------------------
是不是想這樣?
<div id="demo" style="width:200px;height:100px;background-color:buttonface;overflow:auto;">
never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>
</div>
<div id="d2" style="position:absolute;background-color:#eee;"></div>
<script>
alert(demo.offsetWidth);
alert(demo.scrollWidth);
with(d2.style) {
top=demo.offsetTop;
left=demo.offsetLeft;
width=demo.scrollWidth;
height=demo.offsetHeight;
}
</script>
-------------------------------------------------------------------------------------- 如果我沒有理解錯的話,直接減不就可以了嗎?

<div id="demo" style="width:200px;height:100px;background-color:buttonface;overflow:auto;">
never-online
</div>
<div id="d2" style="position:absolute;background-color:#eee;"></div>
<script>
alert("div寬度: "+demo.offsetWidth);
alert("div滾動寬度: "+demo.scrollWidth);
alert("scrollbar寬度: "+(parseInt(demo.offsetWidth)-parseInt(demo.scrollWidth)));
demo.innerhtml = "never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>never-online<br/>"
alert("div寬度: "+demo.offsetWidth);
alert("div滾動寬度: "+demo.scrollWidth);
alert("scrollbar寬度: "+(parseInt(demo.offsetWidth)-parseInt(demo.scrollWidth)));
with(d2.style) {
top=demo.offsetTop;
left=demo.offsetLeft;
width=demo.scrollWidth;
height=demo.offsetHeight;
}
</script>

--------------------------------------------------------------------------------------

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.