首页  >  文章  >  web前端  >  jquery如何将当前mouseover所在元素传递赋值给其内部函数?

jquery如何将当前mouseover所在元素传递赋值给其内部函数?

黄舟
黄舟原创
2017-06-28 13:42:211694浏览

我的代码截取如下:

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn