easyui 1.2.4例子中並沒有給出動態載入樹節點的例子,只好自己研究。
從源碼中可知可以看出combotree 是繼承combo 和tree兩個控件,所以在展開其下級子節點時,把combotree內置的tree的options選項的url重置成一個動態取選擇值的url,代碼如下:
$('#cc').combotree({ url:"treejson.aspx?act=allregion&parentid=0", onBeforeExpand:function(node){ $('#cc').combotree("tree").tree("options").url= "treejson.aspx?act=allregion&parentid=" + node.id; } });
以上內容是小編給大家介紹的EasyUi combotree 實現動態載入樹節點的相關知識,希望對大家有幫助!
更多EasyUi combotree 實作動態載入樹節點相關文章請關注PHP中文網!