首页 > 代码库 > 01-offsetWidth和offsetHeight
01-offsetWidth和offsetHeight
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> div { width: 100px; height: 100px; padding: 10px; border: 10px solid #000; margin: 100px; background-color: pink; } </style> </head> <body> <div class="box"></div> <script> var div = document.getElementsByTagName("div")[0]; //offsetHeight和offsetWidth: 可以检测盒子的宽高。 //包括宽高本身,padding,border。不包括margin //offsetHeight = height+padding+border;(不加margin) //offsetWidth = width+padding+border;(不加margin) console.log(div.offsetHeight); console.log(typeof div.offsetHeight); //number </script> </body> </html>
01-offsetWidth和offsetHeight
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。