缩放和布局

//缩放和布局
$(window).resize(function () {
    $('#BZ_Content').datagrid('resize', { getWidth(0.992) })
});
function getWidth(percent) {
    if ($("body").width() < 950) {
        return 950;
    }
    else return $("body").width() * percent;
}  //datagrid占浏览器窗口宽度的百分之percent

原文地址:https://www.cnblogs.com/handsomer/p/3678253.html