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

03.基本过滤选择器——输入框

时间:2017-12-23 12:08:16      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:focus   inpu   fun   meta   utf-8   set   blog   账号   输入   

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="js/jquery-1.8.3.js"></script>
	</head>
	<body>
		账号:<input type="text" value="请输入账号" name="请输入账号" />
		密码:<input type="password" value="请输入密码" name="请输入密码" />
	</body>
	<script type="text/javascript">
		$("input[type=‘text‘]").on("focus blur",function(){
			//判断是否获取焦点
			if($(this).is(":focus")){
				$(this).val("");
			}else{//否还原内容
				if($(this).val().length==0){
					//获取属性,使用attr()
  				//设置属性 attr("key","value")
  				//获取属性 attr("key")
					$(this).val($(this).attr("name"));
				}
			}
		});
	</script>
</html>

  

03.基本过滤选择器——输入框

标签:focus   inpu   fun   meta   utf-8   set   blog   账号   输入   

原文地址:http://www.cnblogs.com/syj1993/p/8088170.html

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