JS take the size of the scroll bar function code _javascript tips

Source: Internet
Author: User
This is relatively simple, make a record.

Create a nested node, let the outer node produce a scroll bar, and then use Offsetwidth-clientwidth to get the scroll bar width. Note that to avoid page jitter, you can set the outer elements position:absolute and Visibility:hidden

Reference:
Copy Code code as follows:

function Getscrollwith () {
var wrap = SetAttributes ( Document.createelement (' div '), {
Style: {
width: ' 200px ',
Height: ' 200px ',
Overflow: ' Auto ', position: ' absolute ',
Visibility: ' Hidden '
}
})
var inner = setattributes (Document.createelement (' Div '), {
Style: {
width: ' 100px ',
Height: ' 2000px '
}
})
Document.body.appendChild (WRA p);
Wrap.appendchild (inner);
var w = wrap.offsetwidth-wrap.clientwidth;
Document.body.removeChild (Wrap);
wrap = null;
inner = null;
Return w;
}
Function SetAttributes (elem,opts) {
for (var key in opts) {
if (typeof opts[key] = = ' string ') {
E Lem[key] = Opts[key];
}else{
if (!elem[key]) {
Elem[key] = {};
}
SetAttributes (Elem[key],opts[key]);
}
}
return elem;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.