jQuery combine .ready and .resize

前端 未结 3 1249
小鲜肉
小鲜肉 2020-12-08 05:33

Some (well, nearly all) of my code that is in my jQuery .ready function also applies when the window is resized, as it\'s layout work. However, since it\'s the same code, ho

3条回答
  •  北荒
    北荒 (楼主)
    2020-12-08 05:45

    One more better option

    $(window).on("load resize",function(e){
      function abc() {
        // code here
      }
    });
    

提交回复
热议问题