resize()方法是jQuery中的内置方法,当浏览器窗口更改其大小时使用。
用法:
$(selector).resize(function)
参数:该方法接受可选的单参数函数。它用于指定调用resize事件时要运行的函数。
返回值:此方法返回选择的元素,并增加其大小。
下面的示例说明了jQuery中的resize()方法:
例:
<!DOCTYPE html>
<html>
<head>
<title>The resize method</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
x = 0;
$(document).ready(function() {
$(window).resize(function() {
$("p").text(x += 1);
});
});
</script>
<style>
div {
width: 150px;
height: 100px;
padding: 20px;
border: 2px solid green;
font-size: 20px;
}
</style>
</head>
<body>
<div>
<!-- press "ctrl" and "+" key together
and see the effect -->
Welcome to GfG!
<br>
<p>0</p>
times.
</div>
</body>
</html>
输出:
在单击任何东西之前。
在键盘上同时单击2次“ctrl”和“+”键之后。
相关用法
- JQuery one()用法及代码示例
- JQuery last()用法及代码示例
- JQuery on()用法及代码示例
- JQuery eq()用法及代码示例
- JQuery first()用法及代码示例
- JQuery val()用法及代码示例
- JQuery has()用法及代码示例
- JQuery after()用法及代码示例
- JQuery clearQueue()用法及代码示例
- JQuery addBack()用法及代码示例
- JQuery animate()用法及代码示例
- JQuery position()用法及代码示例
- JQuery keyup()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | resize() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。