标签:
$("#apply input").focus(function () {
if ($(this).val() == "请补充内容") {
$(this).val("");
}
$(this).css("color", "#000");
}).blur(function () {
if ($(this).val() == "") {
$(this).val("请补充内容");
}
$(this).css("color", "#000");
});
标签:
原文地址:http://www.cnblogs.com/kk073000/p/5021544.html