日期:2014-05-16 浏览次数:20357 次
function luger_resize() {
。。。。。
}
$(window).resize(luger_resize());
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
function luger_resize() {
alert("卧槽,窗体大小变了呀!");
}
$(window).resize(
function(){
luger_resize();
}
);
</script>
</head>
<body>
<div id="divM" style="width:100%;height:900px;" >
</div>
</body>
</html>