<!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>文本框获得与失去焦点的效果_www.jb200.com</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
.textFocus{color:#f00}
</style>
<script type="text/
javascript" src="/
jquery-1.4.2.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>