HTML5的div自适应高度和宽度
程序员文章站
2022-05-24 21:10:03
...
代码:
<div id="page-wrapper" class="gray-bg" style="border: 2px solid #00CC00">
</div>
<script>
function myFunction() {
var cliWidth = document.body.clientWidth;
var cliHeigth = document.body.clientHeight;
var divWidth = cliWidth;
var divHeight = cliHeigth;
$('#page-wrapper').css("width", divWidth+"px");
$('#page-wrapper').css("height", divHeight+"px");
}
myFunction();
</script>
参考:https://blog.csdn.net/xuanlv_haoshao/article/details/79782369
上一篇: SpringTask实现定时任务
下一篇: 我来告诉你网站赚钱要怎么做