這個對我沒有任何意義。jquery .css()只設置找到的第一個匹配樣式值
我正在嘗試使用jQuery的.css()來設置基於窗口高度的一些按鈕的「最小高度」。
無論出於何種原因,它只設置與FIRST按鈕匹配的最小高度,但有16個匹配的按鈕。
http://jsfiddle.net/VDtgT/20/embedded/result/
「#製表BTN-2」 是問題。 Thiss是我使用的JavaScript:
<script>
$(document).ready(function(){
setMaxHeight();
$(window).bind("resize", setMaxHeight);
function setMaxHeight() {
$("#tab-content-1").css("max-height", ($(window).height() * 0.67 | 0) + "px");
$("#tab-content-1").css("min-height", ($(window).height() * 0.67 | 0) + "px");
$("#tab-content-2").css("max-height", ($(window).height() * 0.67 | 0) + "px");
$("#tab-content-2").css("min-height", ($(window).height() * 0.67 | 0) + "px");
$("#tab-content-3").css("max-height", ($(window).height() * 0.67 | 0) + "px");
$("#tab-content-3").css("min-height", ($(window).height() * 0.67 | 0) + "px");
$("#tab-btn-2").css("min-height", ($(window).height() * 0.67 | 0) + "px");
}
});
</script>
ID必須是唯一的。 http://jsfiddle.net/VDtgT/21/該警報顯示您有多個具有相同ID的元素。 –
爲什麼不通過使用類來設置CSS?如果所有的div(我想你使用的div)將會是相同的高度,例如:而不是$(「#tab-content-n」)有$(「.tab-content」)這會使它變短,當然你可以留下ID以便以後單獨引用它們。 –
@SamuelLopez tab-content-n與tab-btn-n有點不同。前兩個內容容器是相同的,但最後一個將具有獨特的屬性。我可以結合前兩個。謝謝! – JG707