我想调用该函数的负载以及调整大小。
有更好的方法来重写这更紧凑?
$('.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();