📌  相关文章
📜  调整窗口大小和加载页面 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:16.494000             🧑  作者: Mango

代码示例1
// 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();