jQuery笔记$("2")——jQuery事件和动画

2.1事件编写

$(function(){
//编写代码
})

2.2事件绑定

$(function(){
$("#a h1.head").bind("click",function(){
$(this).next().show();
})
})

2.3合成事件

2.3.1 hover()
$(function(){
$("#a h1.head").hover(function(){
$(this).next.show();
},function(){
$(this).next.hide();
})
});
2.3.2 toggle()
$(function(){
$("#a h1.head").toggle(function(){
$(this).next().toggle();
},function(){
$(this).next().toggle();
})
});

2.4阻止默认动作

$(function(){
$("#sub").bind("click",function(event){
var username = $("#username").val(); //获取元素的值
if(username==""){ //判断值是否为空
$("#msg").html("<p>文本框的值不能为空.</p>"); //提示信息
return false;
}
})
})

2.5移除事件

$(function(){
$('#btn').bind("click", myFun1 = function(){
$('#test').append("<p>我的绑定函数1</p>");
}).bind("click", myFun2 = function(){
$('#test').append("<p>我的绑定函数2</p>");
}).bind("click", myFun3 = function(){
$('#test').append("<p>我的绑定函数3</p>");
});
$('#delTwo').click(function(){
$('#btn').unbind("click",myFun2);
});
})

2.6 fadeIn()和fadeOut通过改变透明度

$(function(){
$("#panel h5.head").toggle(function(){
$(this).next("div.content").fadeOut();
},function(){
$(this).next("div.content").fadeIn();
})
})

2.7 slideUp()和slideDown()通过改变高度

$(function(){
$("#panel h5.head").toggle(function(){
$(this).next("div.content").slideUp();
},function(){
$(this).next("div.content").slideDown();
})
})
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值