Bootstrap

jq窗口大小变化事件

jq窗口大小变化事件
$(window).resize(function() {
  $('span').text(x+=1);
});


js 窗口大小变化:
<body onresize="alert('You have changed the size of the window')">
;