2 回答

TA貢獻(xiàn)1853條經(jīng)驗 獲得超18個贊
jQuery綁定mouseover方法是
$(
"#元素id"
).mouseover(
function
(){
//將mouseover所在元素傳遞賦值給其所在內(nèi)部函數(shù),就是將元素本身傳遞給內(nèi)部函數(shù)
//jQuery中元素綁定函數(shù)內(nèi)$(this)就可以獲取到當(dāng)前元素
//所以,如下調(diào)用
show($(
this
));
//$(this)將當(dāng)前元素當(dāng)作參數(shù)傳遞過去
});
function
show(obj){
alert(obj.text());
}

TA貢獻(xiàn)1802條經(jīng)驗 獲得超5個贊
$("#div_menu_1_con a").mouseover(function () {
var activeElement=this;
handle = setTimeout(function(){
changethis(activeElement);
}, 3000);
}).mouseout(function () {
clearTimeout(handle);
});
function changethis(selector){。。。。。。};
添加回答
舉報