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');