jQuery resize() 方法

定义和用法

当调整浏览器窗口大小时,发生 resize 事件。

resize() 方法触发 resize 事件,或规定当发生 resize 事件时运行的函数。

示例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title> 
<script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js">
</script>
<script>
x=0;
$(document).ready(function(){
  $(window).resize(function(){
    $("span").text(x+=1);
  });
});
</script>
</head>
<body>

<p>窗口重置了 <span>0</span> 次大小。</p>
<p>尝试重置窗口大小。</p>

</body>
</html>

  

posted on 2024-08-07 10:32  itjeff  阅读(12)  评论(0编辑  收藏  举报

导航