1

$(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>
4

1 回答 1

5

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

$(window).resize(function() {
    $("#iframeweb").width($(document).width() - $('#menu').width());
}); // <--
于 2013-01-22T21:46:16.633 回答