页面大小改变执行特定函数
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script type="text/javascript" src="js/jquery-1.8.0.min.js"></script> <script type="text/javascript"> window.onresize = function () { alert(2222); } $(window).resize(); </script></head><body> <div id="test" style="border: 2px solid rgb(17, 70, 135); width:200px; height:300px;"> </div> <input type="button" value="点击" onclick="document.getElementById('test').style.display = 'none';" /></body></html>