为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 jQuery 设置 DIV 元素的高度

如何使用 jQuery 设置 DIV 元素的高度

弑天下 2022-09-29 16:13:24
我想实现以下目标1)单击.step2-选择2) .quiz__drawer迪夫应获得 .step2 信息的高度3)输出应为<div class="quiz__drawer" style="height:height of .step2info div">4)使用此j查询代码$('body').on("click", '.step2-opt', function () {   $(".quiz__drawer").height(function(){     $(".step2info").outerHeight();   }); });请帮我修复jquery代码。
查看完整描述

2 回答

?
蓝山帝景

TA贡献1843条经验 获得超7个赞

这里有一个例子供你尝试,希望这有帮助


$('body').on("click", '.step2-opt', function () {

  // get the height of step2info

  var height = $('.step2info').css("height");

  // set the height of quiz__drawer

  $('.quiz__drawer').css("height", height)

});

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<div class="step2info" style="height: 200px; width: 200px; background-color: red;"></div>

<div class="quiz__drawer" style="height: 100px; width: 200px; background-color: green;"></div>

<button class="step2-opt">set height</button>


查看完整回答
反对 回复 2022-09-29
?
暮色呼如

TA贡献1853条经验 获得超9个赞

如您所见,此功能在单击第一个div后均衡高度:


$.fn.equalizeHeights = function(){

  return this.height( Math.max.apply(this, $(this).map(function(i,e){ return $(e).height() }).get() ) )

}


function test(){


$('.step2info, .quiz__drawer').equalizeHeights();


}

<script

  src="https://code.jquery.com/jquery-3.5.1.js"

  integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="

  crossorigin="anonymous"></script>


<body>

<div class="step2info" onclick="test()">dkdpodkds<br>soskdsopkdspodskpskpkpk<br>sopkspokdspskposkspksapk<br></div>

<div class="quiz__drawer"></div>

</body>


查看完整回答
反对 回复 2022-09-29
  • 2 回答
  • 0 关注
  • 102 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信