0

height属性だけをに置き換えたいmin-height

これは私が通常値を変更する方法ですが、属性を変更する方法がわかりません

 $('.mySelector').css('height','650px')

<div class="mySelector" style="cursor: -moz-grab; width: 1266px; height: 650px;">

私の謝罪は、これを以前に言及するべきでした

4

2 に答える 2

6

属性に高さを設定している場合は、次の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');
于 2012-11-27T21:07:37.253 に答える