当我运行这个简单的功能时,我很感兴趣
$(window).resize(function() {
var that = $(this);
var widthValue = that.width();
console.log(widthValue + 'px');
});
当我开始调整浏览器窗口的大小时,它会起作用。
但是当我这样做时
$(window).resize(function() {
var that = $(this);
var widthValue = that.width();
console.log(widthValue + 'px');
}).resize();
它的行为就像load();
. 我resize()
在最后加了。
这个叫什么?不确定我是否理解它为什么以及如何工作。