0
我想通過jquery處理一些CSS時,在頁面加載視口不包括垂直一些特定的元素。所以我試圖評估窗口的高度是否小於這些元素的高度組合。問題是,這種情況評價高度不返回正確的值
var winH = parseInt($(window).height());
var topH = parseInt($("#name").height()) + parseInt($("#head-001").height());
if(winH > topH);
{
//$("#wrapper").css("top", window.innerHeight - $("#first-bar").height()); what I want to be done if condition passes
console.log(winH + " + " + topH + " =");
console.log(winH + topH);
}
總是返回true ...不管,如果我改變評價<,> =,===儘管登錄合適的值,它們的總和爲每則返回true兩行測試。 任何想法爲什麼?謝謝。
你能後的HTML請 –