您的位置:首页 > Web前端 > JQuery

JQuery 设置元素的高度和宽度相等

2015-07-11 00:00 681 查看
摘要: var height = $(".height-width").width();
$(".height-width").css("height",height );

有时需要设置下面的情况,即 <div> 的高度和宽度是相等的、并且随着屏幕的大小变化而变化。这样就需要用 js 来控制元素在页面上的显示。



<html>

<body>

<div class="row text-center margin-top-20p">

<div class="col bgcolor-FF9600 border-radius-5p margin-2p height-width">

<p class="white">你是</p>

<p class="white" ng-bind="userLever.name"></p>

</div>

<div class="col bgcolor-FECA14 border-radius-5p margin-2p height-width" ng-if="userLever.discount != 10">

<p class="white">享受</p>

<p class="white">{{userLever.discount}}折</p>

</div>

<div class="col bgcolor-FECA14 border-radius-5p margin-2p height-width" ng-if="userLever.discount == 10">

<p class="margin-top-20p white">不享受</p>

<p class="white">折扣</p>

</div>

<div class="col bgcolor-A5D600 border-radius-5p margin-2p height-width">

<p class="white">加入时间</p>

<p class="white" ng-bind="addTime"></p>

</div>

</div>

<body>

</html>

<script type="text/javascript">
//设置元素的高度
var height = $(".height-width").width();
$(".height-width").css("height",height );
$(".height-width-child").css("height",height );
$(".height-width p:first-child").css("margin-top",Math.ceil(height/4)+"px");
$(".height-width-child p").css("line-height",height+"px");
</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: