简体   繁体   中英

How to find Masterpage height and width using Javascript

如何使用 Javascript 查找offsetheightoffsetwidth

Isn't the MasterPage height and width just the document's height and width? And by offsetWidth and offsetHeight, do you mean you want the width and height? Offset is usually for left and top.

Use jQuery's width and height methods:

var width = $(document).width();
var height = $(document).height();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM