欢迎加QQ群14670545 探讨
<input type="text" id="txtKeyClick" value="username" />
<input type="password" id="txtPwd" class="hide" />
$("#txtKeyClick").click(function () {
$(this).hide();
$("#txtPwd").show().focus();
});
$("#txtPwd").bind('blur', function () {
if ($.trim($(this).val()) == "") {
$(this).hide();
$("#txtKeyClick").show();
}
});