這樣寫:this
1
2
3
4
5
6
7
8
9
10
11
12
|
$( ".aa" ).on( "mouseout" , function (){
var obj = $( this );
setTimeout( function (){
rc(obj);
},1000);
})
function rc(obj){
obj.removeClass( "bb" )
}
|