Jquery窗口发生变化回调函数

$(window).resize(function() {
var win_width = $(window).width();
var win_height = $(window).height();
console.log(win_width);
console.log(win_height);
});
原文地址:https://www.cnblogs.com/ffyun/p/13540822.html