Jquery窗口设置宽度

时间:2016-04-18 15:09:26

标签: javascript jquery

这是我的代码:

$(function() {
    checkWindowSize();

    function checkWindowSize() {

        var elWidth  = $("#elId").outerWidth(),
            elHeight = $("#elId").outerHeight();


        $(window).innerWidth(elWidth);
        $(window).innerHeight(elHeight);
    }
});

每次调用checkWindowSize()函数时,我想调整浏览器窗口的大小。但我注意到窗口对象的resize函数不起作用。 我如何调整浏览器窗口的大小?

1 个答案:

答案 0 :(得分:0)

好的,我找到了答案

我的新功能:

function checkWindowSize() {

    var elWidth  = $("#elId").outerWidth(),
        elHeight = $("#elId']").outerHeight(),

        browserElements = window.outerHeight - window.innerHeight;

    window.resizeTo(elWidth, elHeight + browserElements);

}