我只想将height
属性替换为min-height
这就是我通常更改值的方式,但不确定如何更改属性
$('.mySelector').css('height','650px')
<div class="mySelector" style="cursor: -moz-grab; width: 1266px; height: 650px;">
我的道歉应该早些提到这一点
我只想将height
属性替换为min-height
这就是我通常更改值的方式,但不确定如何更改属性
$('.mySelector').css('height','650px')
<div class="mySelector" style="cursor: -moz-grab; width: 1266px; height: 650px;">
我的道歉应该早些提到这一点
如果您在height
属性中设置了高度,我认为您必须执行以下操作:
var selector = $('.mySelector');
// set the min-height to I guess whatever the height you had set was
selector.css('min-height', selector.attr('height'));
// remove that old height attribute
selector.removeAttr('height');
如果您想删除 height 属性但将相同的值添加到 min-height样式属性,您可以这样做:
$('.mySelector').css('min-height', function() {
return this.height;
}).removeAttr('height');