//文本框
$(":text,:password").focus(function(){
var textHTML =$(this).val();
if (textHTML ==this.defaultValue) {
$(this).val("");
}
}).blur(function() {
var textHTML =$(this).val();
if (textHTML == ""){
$(this).val(this.defaultValue);
}
});
参考
http://www.cnblogs.com/leejersey/archive/2012/07/20/2600646.html