jQuery resize function doesn't work on page load

后端 未结 5 1663
情话喂你
情话喂你 2020-11-28 14:05

How do I get this function to not only run on window resize but also on initial page load?

$(window).resize(function() {
...  
});
5条回答
  •  -上瘾入骨i
    2020-11-28 14:26

    $(document).ready(onResize);
    $(window).bind('resize', onResize);
    

    didn't work with me.

    Try

    $(window).load('resize', onResize);
    $(window).bind('resize', onResize);
    

    instead.

    (I know this question is old, but google sent me here, so...)

提交回复
热议问题