我想使用jQuery將所有div
標記的高度更改爲特定的class
。 我已經成功地使用CSS設置高度,但我想從jQuery中更改它。在jQuery中更改div的高度
我曾嘗試下面的代碼:
$('.slide-container').css({ "height": 200 + "px !important" });
$('.slide-container').height(200);
$('.slide-container').css({ "height": 200 + "px" });
這是將原來的高度的CSS。
.slide-container { height:300px !important; }
Here is a JSFiddle of my attempts.
爲什麼你的問題的標題有'C#'呢? – P5Coder
爲什麼在你的類聲明中設置'!important'?你應該永遠不要使用它,除非你知道你在做什麼...... – nietonfir
@ user1167870你提供的答案有幫助你嗎? – Haohmaru