我想使用脚本根据实际元素的高度为元素添加min-height或max-height。
所以我得到了。height()(?) 然后使用该值设置min/max-height。 这可能吗? 它必须是动态的,以便div可以改变高度,但仍然具有正确的最小高度或最大高度。
我什么都没试过,只是搜索了一下怎么做--我真的不是jQuery og JavaScript方面的专家。 我现在要做的是使用console.log来给我一个元素的高度(例如一个hero部分),这样我就不需要在Developer中手动检查它了。 然后在CSS中将该值写成最小高度。 我这么做的原因是因为新的Lighthouse Core Web Vitals(累积布局移位(CLS))。
编辑:所以我想我找到了一个解决方案,而且(就像我说的)我不是这里的专家,但是任何反馈都是非常感谢的。
jQuery(".hero").css("min-height", function(){
return jQuery(".hero").height();
});
这是你想要的一个例子
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Set a DIV height</title>
<style>
.box{
background: #f2f2f2;
border: 1px solid #ccc;
}
</style>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
$(document).ready(function(){
var newHeight = $(".input-height").val();
$(".box").height(newHeight);
});
</script>
</head>
<body>
<form>
<input type="text" class="input-height">
<button type="button" class="set-height-btn">Set Height</button>
<p>Enter the value in input box either as number (e.g. 100, 200) or combination of number and unit (e.g. 100%, 200px, 50em, auto) and click the "Set Height" button.</p>
</form>
<br>
<div class="box">This is simple DIV box</div>
</body>
</html>