怎么写jquery easyui combotree 的onSelect事件,大侠们帮帮忙啊

2024-12-21 12:57:40
推荐回答(1个)
回答1:

$('#cc').combotree({
onSelect:function(node) {
alert("dd");
}
})
基本是这样了,但要页面加载后执行哇! 加上$(function(){//...});

为了不混淆,html加个新的id吧
js:
$(function(){
$('#dd').combotree({url:"tree_data.json",onSelect:function(node){alert(node.text);}});
});