首页 > 语言 > JavaScript > 正文

一个JavaScript获取元素当前高度的实例

2024-05-06 16:10:10
字体:
来源:转载
供稿:网友

这篇文章主要为大家介绍了一个JavaScript获取元素当前高度的实例,比较实用,建议新手朋友们可以看看

  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />  
  5. <title>每天一个JavaScript实例-获取元素当前高度</title>  
  6. <style> 
  7. #date{width:90%;height:25%;padding:10px;background: red;}  
  8. </style>  
  9. <script>  
  10. window.onload = function(){  
  11. var height = getHeight();  
  12. console.log(height);  
  13. }  
  14. function getHeight(){  
  15. var height = 0;  
  16. var div = document.getElementById("date").getBoundingClientRect();  
  17. if(div.height){  
  18. height = div.height;  
  19. }else{  
  20. height = div.bottom - div.top;  
  21. }  
  22. return height;  
  23. }  
  24. </script>  
  25. </head>  
  26.  
  27. <body>  
  28. <div style="width:1000px;height:800px;">  
  29. <div id = "date">  
  30. </div>  
  31. </div>  
  32. </body>  
  33. </html> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选