}
});
$(“#address”).blur(function(){ // 地址框失去鼠标焦点
var txt_value = $(this).val(); // 得到当前文本框的值
if(txt_value==””){
$(this).val(“请输入邮箱地址”);// 如果符合条件,则设置内容
}
})
$(“#password”).focus(function(){
var txt_value = $(this).val();
if(txt_value==”请输入邮箱密码”){
$(this).val(“”);
}
});
$(“#password”).blur(function(){
var txt_value = $(this).val();
if(txt_value==””){
$(this).val(“请输入邮箱密码”);
}
})
});
//]]>
</script>
<script type=”text/javascript”>
//<









