码迷,mamicode.com
首页 > Web开发 > 详细

用jquery实现html5的placeholder功能

时间:2014-06-08 10:29:07      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:jquery

html5的placeholder功能在表单中经常用到,它主要用来提示用户输入信息,当用户点击该输入框之后,提示文字会自动消失。

我们用jquery实现类似的功能:

当输入框获得焦点时,清空输入框中的提示文字。

当输入框失去焦点时,若输入框中的数据为空,则再次出现提示文体。

效果图:

bubuko.com,布布扣

talk is cheap , show you code:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jquery test</title>
<script src="jquery-1.11.1.min.js"></script>
<style type="text/css">
	input
	{
		margin-top:50px;
		margin-left:100px; 
		color: gray;
	}
</style>
</head>

<body>
<div><input type="text" id="username" value="用户名"></div>
<div><input type="text" id="email" value="邮箱"></div>
</body>
<script type="text/javascript">
	$("input").click(function(){
		$(this).val("");
	});
	$("input").blur(function(){
		if($(this).val() == ""){
			$(this).val(this.defaultValue);
		}			
	})
</script>
</html>

说明:this.defaultValue指的是该标签原始的value值

用jquery实现html5的placeholder功能,布布扣,bubuko.com

用jquery实现html5的placeholder功能

标签:jquery

原文地址:http://blog.csdn.net/qsyzb/article/details/28913501

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