我試圖使用功能顯示或隱藏這樣的負荷頁:jQuery的顯示()隱藏()加載頁
$(window).resize(function(){
var width = $(window).width()
if(width >= 1200) {
console.log("> 1200")
$('#acct').attr({
'style' : 'display: none;',
});
$("#logout").css('display', 'none');
$("#dropnav").show();
$("#icontop").show();
$('.navbar-default').css("max-height", "50px");
$('#meetus').css("margin-left", "-100px");
} else {
$("#acct").show();
$("#logout").show();
$("#icontop").hide();
$("#dropnav").hide();
$('.navbar-default').css("max-height", "999999px");
$('#meetus').css("margin-left", "-60px");
}
});
,當我與機能的研究調整大小()的頁面隱藏運行和顯示組件攜手perfetly,但在文件準備就緒,歐窗口負載沒有任何反應:(
顯示完整的代碼。什麼是'寬度'? – Alex
另外,你可能想要使用CSS媒體查詢 – Alex