彩票走势图

logo jQuery EasyUI使用教程
文档彩票走势图>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:创建异步树

jQuery EasyUI使用教程:创建异步树


Kendo UI for jQuery——创建现代Web应用程序的最完整UI库!查看详情>>>

想要创建异步,每个树节点必须要有一个“id”属性,此属性将提交回服务器去检索子节点的数据。

窗口和布局

创建树

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

下载EasyUI示例:

购买正版授权的朋友可以点击""哦~~~
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP