我的程式碼截取如下:
var handle = null; $("#div_menu_1_con a").mouseover(function () { handle = setTimeout(changethis(???), 3000); }).mouseout(function () { clearTimeout(handle); }); function changethis(selector){。。。。。。};
上面? ? ?處就是要將目前發生mouseover的元素傳給changethis函數,讓它去處理一些事情!
jQuery綁定mouseover方法是
$("#元素id").mouseover(function(){ //将mouseover所在元素传递赋值给其所在内部函数,就是将元素本身传递给内部函数 //jQuery中元素绑定函数内$(this)就可以获取到当前元素 //所以,如下调用 show($(this));//$(this)将当前元素当作参数传递过去 }); function show(obj){ alert(obj.text()); }
$("#div_menu_1_con a").mouseover(function () { var activeElement=this; handle = setTimeout(function(){ changethis(activeElement); }, 3000); }).mouseout(function () { clearTimeout(handle); }); function changethis(selector){。。。。。。};
this 呀 直接this就可以了
以上是jquery如何將目前mouseover所在元素傳遞賦值給其內部函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!