码迷,mamicode.com
首页 > 其他好文 > 详细

验证一个表单需要干的事情

时间:2015-08-05 12:45:05      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

1. 当元素失去焦点时发生 blur 事件。

$("input").blur(function(){
alert("This input field has lost its focus.");
});

 

http://www.runoob.com/jquery/event-blur.html

 

2. 当输入框获取焦点的时候,触发的事件。

$("input").focus(function(){
$("span").css("display","inline").fadeOut(2000);
});

 

http://www.runoob.com/jquery/event-focus.html

 

3. 当键盘键被松开时发生 keyup 事件。

$("input").keyup(function(){
$("input").css("background-color","pink");
}); 

 

http://www.runoob.com/jquery/event-keyup.html

 

4. 当表单提交的时候触发的事件。

$("form").submit(function(){
alert("Submitted");
}); 

http://www.runoob.com/jquery/event-submit.html

 

 

JQuery 的事件列表:http://www.runoob.com/jquery/jquery-ref-events.html

 

验证一个表单需要干的事情

标签:

原文地址:http://www.cnblogs.com/liuhongfeng/p/4704222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!