中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

jEasyUI 創(chuàng)建異步樹形菜單

為了創(chuàng)建異步的樹形菜單(Tree),每一個樹節(jié)點必須要有一個 'id' 屬性,這個將提交回服務器去檢索子節(jié)點數(shù)據(jù)。

創(chuàng)建樹形菜單(Tree)

????<ul id="tt" class="easyui-tree"
????????????url="tree2_getdata.php">
????</ul>

服務器端代碼

????$id = isset($_POST['id']) ? intval($_POST['id']) : 0;

????include 'conn.php';

????$result = array();
????$rs = mysql_query("select * from nodes where parentId=$id");
????while($row = mysql_fetch_array($rs)){
????????$node = array();
????????$node['id'] = $row['id'];
????????$node['text'] = $row['name'];
????????$node['state'] = has_child($row['id']) ? 'closed' : 'open';
????????array_push($result,$node);
????}

????echo json_encode($result);

????function has_child($id){
????????$rs = mysql_query("select count(*) from nodes where parentId=$id");
????????$row = mysql_fetch_array($rs);
????????return $row[0] > 0 ? true : false;
????}