组合onload和onresize(jQuery)

前端之家收集整理的这篇文章主要介绍了组合onload和onresize(jQuery)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想调用函数负载以及调整大小。

有更好的方法来重写这更紧凑?

$('.content .right').width($(window).width() - (480));
$(window).resize(function(e) {
    $('.content .right').width($(window).width() - (480));
});

解决方法

您可以单独绑定到resize事件,并在加载时自动触发此事件:
// Bind to the resize event of the window object
$(window).on("resize",function () {
    // Set .right's width to the window width minus 480 pixels
    $(".content .right").width( $(this).width() - 480 );
// Invoke the resize event immediately
}).resize();

最后一个.resize()调用将在加载时运行此代码

原文链接:/jquery/184029.html

猜你在找的jQuery相关文章