欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery将标签元素的高设为屏幕的百分比

程序员文章站 2022-07-06 12:20:37
html部分:
j...

html部分:

<body>
<div id="margin_box"></div>
</body>

jquery部分:

<script>
   $(function(){
       var percent =0.15; 
       $("#margin_box").css("height",window.document.body.clientheight*percent)
   })
</script>