gpt4 book ai didi

javascript - 使用 JavaScript 使高度与动态宽度相同不起作用

转载 作者:行者123 更新时间:2023-11-28 05:42:30 25 4
gpt4 key购买 nike

我在我的元素中使用了 Bootstrap,并试图从 Bootstrap col 制作一个正方形,但它没有用,并且总是有不同的宽度尺寸和高度尺寸的差距,如 94.11px 和 94px。

我想使宽度:高度的比例为 1:1。但没用

HTML

<div class="content_image col-xs-3 squarethis"></div>
<div class="content_description col-xs-9 followheight"></div>

JavaScript

var st = $('.squarethis').width();
$('.squarethis').css({'height':st+'px'});
$('.followheight').css({'height':st+'px'});

有人知道吗?

var st = $('.squarethis').width();
$('.squarethis').css({'height':st+'px'});
$('.followheight').css({'height':st+'px'});
.squarethis{
width:30%;
float:left;
background:#ccc;}
.followheight{
width:70%;
float:left;
background:#999;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="squarethis">asd</div>
<div class="followheight">asd</div>

下图

the gap between width and height from this code

最佳答案

.css方法的回调中设置元素的高度(.css( propertyName, function ))

更新: 经过几次测试,我发现当 width 被分配给元素时,我们也得到了滚动条导致元素的 width 发生变化的页面,因为我们在 % 中分配它,设置 overflow : hidden 会给你预期的结果!

$('.squarethis').css({
'height': function() {
return $(this).width()
}
}).text(function() {
return $(this).width() + ' x ' + $(this).height();
});
$('.followheight').css({
'height': function() {
return $(this).width()
}
}).text(function() {
return $(this).width() + ' x ' + $(this).height();
});
* {
padding: 0;
margin: 0;
}
body {
overflow: hidden;
}
.squarethis {
width: 30%;
float: left;
background: #ccc;
}
.followheight {
width: 70%;
float: left;
background: #999;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="squarethis">asd</div>
<div class="followheight">asd</div>

Fiddle Demo

关于javascript - 使用 JavaScript 使高度与动态宽度相同不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37796292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com