我需要编辑div元素的样式属性:
这是我的div元素:
<div class="pp_content pre-scrollable" style="height: 206px; width: 544px;">
当我想要一个事件时,我想要这个元素:
<div class="pp_content pre-scrollable" style="min-height: 206px; width: 544px;">
只有高度转换为具有相同值的min-heigth。
我需要这样的内容:$(".pp_content.pre-scrollable").attr(??)
如何使用jquery执行此操作?
答案 0 :(得分:1)
@KarthkeyanVedi 答案已接近,以下是如何执行此操作但使用height
的旧值而不是静态数字:
var oldHeight = $(".pp_content.pre-scrollable").css('height');
$(".pp_content.pre-scrollable").css({ 'height' : '', 'min-height' : oldHeight });
答案 1 :(得分:0)
您可以使用
执行此操作 $(".pp_content.pre-scrollable").css({ 'height' : '', 'min-height' : '206px' });