$(窗口).resize不起作用

时间:2013-01-22 21:43:44

标签: javascript jquery html

$(window).resize无效,我缺少什么?

所以我这个页面有一个350px宽度的垂直菜单,水平居中。链接打开iframe,显示不同的内容。显示外部网站的iframe获取其宽度:$("#iframeweb").width($(document).width() - $('#menu').width()),以便填满屏幕,将菜单推到一边。

该部分有效,但它还需要在调整窗口大小时更改宽度,但它什么都不做......

代码:

<div id="wrapper">
    <div id="outer">
    <div id="inner">
        <iframe name="iframeweb" id="iframeweb"></iframe>
        <div id="menu">
                </div>
        <iframe name="iframeA4" id="iframeA4"></iframe>
    </div>
    </div>
    </div>

<script type="text/javascript">
$(window).resize(function() {
    $("#iframeweb").width($(document).width() - $('#menu').width());
};
</script>

<script type="text/javascript">
$("#linkA4").click(function(){
    $("#iframeA4")
        .hide('fast')
        .animate({"width": "0px"}, 'fast')
        .animate({"width": "210mm"}, 'fast')
        .show('fast');  
    $("#iframeweb").hide('fast');
});

$("#linkweb").click(function(){
    $("#iframeA4")
        .animate({"width": "0px"}, 'fast')
        .hide('fast');
    $("#iframeweb")
        .hide('fast')
        .width($(document).width() - $('#menu').width())
        .show('fast');
});
</script>

1 个答案:

答案 0 :(得分:5)

您有一个简单的语法错误,关闭括号

$(window).resize(function() {
    $("#iframeweb").width($(document).width() - $('#menu').width());
}); // <--