jquery 焦点事件
$(function () {
$('.search_input').bind({
focus: function () {
if (this.value == this.defaultValue) {
this.value = "";
}
},
blur: function () {
if (this.value == "") {
this.value = this.defaultValue;
}
}
});
})
浙公网安备 33010602011771号