target.find()是什么意思
·就是你获取到的具体节点对象后.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]