gpt4 book ai didi

javascript - jQuery 将 div 的高度设置为有多少文本

转载 作者:行者123 更新时间:2023-11-30 10:37:27 25 4
gpt4 key购买 nike

我已经构建了一个简单的动画功能,您可以在其中单击一个扩展框,如果可能的话我宁愿不使用插件。

目前它看起来像这样:

$('#one').css("height", "22");
$('#t1').click(function() {
if ($('#one').hasClass("extended")) {
$('#one').stop(true, true).animate({height: '22px'},500);
$('#one').removeClass("extended");
$('#a1').stop(true, true).animate({opacity: '1'},500);
} else {
$('#one').animate({height: '120px'},500);
$('#one').addClass("extended");
$('#a1').animate({opacity: '0'},300);
}
});

但问题是,如果div里面的文字溢出了,那怎么设置为文字的高度呢?我希望这是有道理的!

HTML:

<div class="rightBox">
<div id="one" style="overflow:hidden;">
<h3><a href="#" id="t1">Availability</a></h3><p id="a1"><a href="#" title="Slide Down"><img src="<?php echo home_url(); ?>/img/arrow.png" alt="Arrow" /></a></p>
<?php include 'availability.php'; ?>
</div>
</div><!-- END.#rightBox -->

最佳答案

我处理这个问题的方法是计算所有 child 的高度,然后开始动画到那个特定的高度。见下文。

查看此 jsFiddle .

<div class="rightBox">
<div id="one" style="overflow:hidden;">
<h3><a href="#" id="t1">Availability</a></h3><p id="a1"><a href="#" title="Slide Down"><img src="/img/arrow.png" alt="Arrow" /></a></p>
<p>Sample text</p>
<p>Sample text</p>
<p>Sample text</p>
<p>Sample text</p>
<p>Sample text</p>
<span>More Sample text</span>
</div> </div>​

jQuery/javascript

$('#one').css({"height": "22px", "background-color": "red"});

$('#t1').click(function() {

if ($('#one').hasClass("extended")) {
$('#one').stop(true, true).animate({height: '22px'},500);
$('#one').removeClass("extended");
$('#a1').stop(true, true).animate({opacity: '1'},500);
} else {
var height = 0;//initialize a height
$(this).closest("div").children().each(function(){//this loops through each child element
height += $(this).outerHeight(true);//this sums up the height
});
$('#one').animate({height: height + 'px'},500);//set the height
$('#one').addClass("extended");
$('#a1').animate({opacity: '0'},300);
} });​

关于javascript - jQuery 将 div 的高度设置为有多少文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13088477/

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