<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{
padding: 0;
margin: 0;
}
#box{
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div id="box">
</div>
<div class="abc" >撒旦飒飒的</div>
<input type="button" class="but show" value="点我"/>
<script src="jquery-1.12.4.min.js"></script>
<!--方法一-->
<script type="text/javascript">
$(function(){
var i=0;
$("#box").click(function(){
i++;
if(i%2!=0){
$("#box").stop().animate({"height":"650px"},600);
}else{
$("#box").stop().animate({"height":"100px"},600);
}
});
})
</script>
<!--方法二-->
<script>
$(document).ready(function(e) {
$(".but").click(function(e) {
$(".abc").toggle();
});
});
</script>
<!--方法三-->
<script>
$(document).ready(function(e) {
$(".but").click(function(e) {
if( $(".abc").hasClass("show") ){
// 执行隐藏
$(".abc").hide().removeClass("show");
// 其他
}else{
// 显示
$(".abc").show().addClass("show");
}
});
});
</script>
</body>
</html>
点击元素改变高度和显示/隐藏且恢复初始状态
最新推荐文章于 2022-10-08 13:29:23 发布