淘先锋技术网

首页 1 2 3 4 5 6 7

//获取到元素

var o = document.getElementById("view");

//获取此元素的高度
var height = o.offsetHeight; //高度

//获取此元素的宽度
var width = o.offsetWidth; //宽度

转载于:https://www.cnblogs.com/PHP0222wangdong/p/11337651.html