• <menu id="w2i4a"></menu>
  • logo jQuery EasyUI使用教程

    文檔首頁>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:創(chuàng)建異步樹

    jQuery EasyUI使用教程:創(chuàng)建異步樹


    Kendo UI for jQuery——?jiǎng)?chuàng)建現(xiàn)代Web應(yīng)用程序的最完整UI庫!查看詳情>>>

    想要?jiǎng)?chuàng)建異步,每個(gè)樹節(jié)點(diǎn)必須要有一個(gè)“id”屬性,此屬性將提交回服務(wù)器去檢索子節(jié)點(diǎn)的數(shù)據(jù)。

    窗口和布局

    創(chuàng)建樹

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

    服務(wù)器代碼

    $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;
    }

    下載EasyUI示例:easyui-tree-demo.zip

    購買正版授權(quán)的朋友可以點(diǎn)擊"咨詢在線客服"哦~~~
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();