Bootstrap

JQuery监听浏览器改变窗口大小事件

$(window).resize(function() {
var width = $(this).width();
var height = $(this).height();
});
;