标签:
$(function () {
$(‘.search_input‘).bind({
focus: function () {
if (this.value == this.defaultValue) {
this.value = "";
}
},
blur: function () {
if (this.value == "") {
this.value = this.defaultValue;
}
}
});
})
标签:
原文地址:http://www.cnblogs.com/liushunli/p/5627811.html