bind

$(function(){
$('input[name=q]').bind(
mousedown:function(){
$(this).val('');
},
mouseout:function(){
$('txt').parent().parent().removeClass('wt').addClass('wc');
},
click:function(){
}
);
})

你可能感兴趣的:(bind事件)