有人可以告诉我,为什么下面的 html 代码会使 firefox 窗口(在 windows7 上)无法调整大小?
<!doctype html>
<html>
<head>
<title>Flash</title>
<script src="jquery.js"></script>
<script src="swfobject.js"></script>
<script type="text/javascript">
$(document).ready( function() {
swfobject.embedSWF("Menu.swf", "flashdiv", "100%", "100%", "10");
});
</script>
<style>
html,body,#flashdiv
{
width:100%;
height:100%;
margin:0;
padding:0;
overflow:hidden;
}
</style>
</head>
<body><div id="flashdiv"></div></body>
</html>
现场测试用例:http ://www.embege.com/misc/ff.html
编辑:我已经尝试禁用所有插件。我也尝试了 Firefox beta,但是当我在这个页面时,窗口大小仍然被锁定。