|
热门文章 |
|
|
|
|
表单文本框得到和失去焦点的效果 |
来源:源码爱好者 更新时间:2011/12/3 14:02:07 阅读次数: 我要投稿 |
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>文本框得到和失去焦点的效果</title> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <style type="text/css"> .textFocus{color:#f00} </style> <script type="text/javascript" src="http://www.zzsky.cn/effect/images/jquery.js"></script> <script type="text/javascript"> $(function(){ $(".text").focus(function(){ var defaultVal = this.defaultValue; var textVal = $(this).val(); if(textVal == defaultVal){ $(this).val(""); $(this).addClass("textFocus"); }; }) $(".text").blur(function(){ var defaultVal = this.defaultValue; var textVal = $(this).val(); if(textVal == ""){ $(this).val(defaultVal); $(this).removeClass("textFocus"); } }) }) </script> </head> <body> <p> <input type="text" value="表单内容1" class="text"> </p> <p> <input type="text" value="表单内容2" class="text"> </p> <p> <input type="text" value="表单内容3" class="text"> </p> </body> </html> |
特效说明: |
文本框得到和失去焦点的效果,大家在平时经常遇到的一种实用功能,表单的焦点问题,鼠标不点击的时候出现打提示文字,点击后则进入输入状态,以此为例。 |
|
上一篇文章: Js实现点击添加增加一行,点击删除则删除一行下一篇文章: 带提示的文本搜索框,仿Dell.com |
|
|