1.$(selector).bind(event,data,function,map) //给元素添加一个事件
2.当元素失去焦点时发生 blur 事件,获得焦点时触发focus事件:
$("input").focus(function(){
$(this).css("background-color","#cccccc");
});
$("input").blur(function(){
$(this).css("background-color","#ffffff");
});
3.当元素被改变时触发
$(".field").change(function(){
$(this).css("background-color","#D6D6FF");
});
4.双击时候触发
$(selector).dblclick(function)
5.
时间: 2024-10-10 23:18:37