<1>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>输入文本框提示文字的清空</title>
<script src="Jquery/jquery-1.10.2.js" type="text/javascript"></script>
<script type="text/javascript">
//当用户刚进入页面,在文本框中用灰色文字提示用过应该做什么,点用户点击这个文本框的时候,清空提示文字。
$(function () {
var isFirst = true;
$("#text1").css("color", "grey").focus(function () {
if (isFirst) //判断用户是否第一次输入,如果是第一次输入,就将当前控件的值设为空
$(this).val("");
$(this).css("color", "Black")
});
$("#text1").bind("keydown", function () {//#text1控件绑定 keydown事件,当它被按下的时候就触发function()匿名函数,将isFirst设为false【这时候将isFirst设为fasle,那就么代表它不是第一次输入了。所以第二次点击#text1控件的时候它就不会将#text1的值设为空了】
isFirst = false;
});
$("#text1").blur(function () {
if ($(this).val().length <= 0) { //如果在失去焦点的时候用户名的长度<=0的话就重新提示用户"请输入用户名"
$(this).css("color", "grey").val("请输入用户名")
}
})
})
//第二种实现方式
$(function () {
$("#text1").css("color", "Grey").focus(function () {
if ($(this).val() == "请输入用户名") {
$(this).val("").css("color", "Black")
}
})
$("#text1").blur(function () {
if ($(this).val().length <= 0) {
$(this).css("color","grey").val("请输入用户名")
}
})
})
</script>
</head>
<body>
<input type="text" value="请输入用户名" id="text1"/><br/>
</body>
</html>