0
我想在調整窗口大小時調整div的大小。用下面的代碼我得到「this.fullScreen不是一個函數」如果我刪除窗口調整大小它工作正常,但顯然不會調整窗口大小。我在想這個錯誤的方式嗎?當調整大小時,jquery窗口調整大小錯誤
var PE = {};
PE.functions = {
fullScreen: function fullScreen() {
var fullScreen = $('.full-screen'),
navbarHeight = $('.navbar').height(),
windowHeight = $(window).height(),
windowWidth = $(window).width();
fullScreen.css({
width: windowWidth,
height: windowHeight - navbarHeight
});
},
fullScreenResize: function screenResize() {
$(window).resize(function(){
this.fullScreen();
});
}
};
$(document).ready(function() {
PE.functions.fullScreenResize()
});
錯誤字面意思是「this.functionName不是函數」?如果沒有,請提供引用的實際函數名稱,以及指出您提供的代碼的哪一行位於回溯中的異常。 –
對不起錯誤未捕獲TypeError:this.fullScreen不是函數 – Mark