jQuery resize event not firing

前端 未结 7 1605
独厮守ぢ
独厮守ぢ 2021-01-11 09:58

For whatever reason the following:

$(function() {
  $(window).resize(function() {
    alert(\"resized!\");
  });
});

only fires an event wh

7条回答
  •  余生分开走
    2021-01-11 10:44

    works in any browser:

    http://jsbin.com/uyovu3/edit#preview

    $(window).resize(function() {
      $('body').prepend('
    ' + $(window).width() + '
    '); });

提交回复
热议问题