有大佬知道,关于target.find()是什么意思?

var turn = function(target,time,opts){
target.find('a').hover(function(){
$(this).find('.class_01').stop().animate(opts[0],time,function(){
$(this).hide().next().show();
$(this).next().animate(opts[1],time);
});
},function(){
$(this).find('.info').animate(opts[0],time,function(){
$(this).hide().prev().show();
$(this).prev().animate(opts[1],time);
});
});
}

想让鼠标悬停改成鼠标点击,target.find('a').hover改成target.find('a').click没用

眼眸繁星
浏览 433回答 1
1回答

达令说

·就是你获取到的具体节点对象后.target就可以了,其实你仔细看API都可以看懂的:如果是对于tree插件 find方法的描述[mw_shl_code=javascript,true]Find the specifed node and return the node object. Code example:// find a node and then select itvar node = $('#tt').tree('find', 12);//找到id值为12的节点对象$('#tt').tree('select', node.target);//选中该节点[/mw_shl_code]
打开App,查看更多内容
随时随地看视频慕课网APP