$('#cc').combotree({onSelect:function(node) { alert("dd"); }})基本是这样了,但要页面加载后执行哇! 加上$(function(){//...});为了不混淆,html加个新的id吧 js:$(function(){ $('#dd').combotree({url:"tree_data.json",onSelect:function(node){alert(node.text);}});});