Português
1.建立一个aspx页面html http://www.w3.org/1999/xhtml " >
função GetSubCategory_callback(resposta) { var dt = resposta.valor.Tabelas[0]; if (dt.Rows.comprimento > 0) { var iCategoryID = dt.Rows[0].FatherID; } var li_pai = el("li_" + iCategoryID); var ul = document.createElement("ul"); para (var i = 0;i
função ChangeStatus(iCategoryID) { var li_pai = el("li_" + iCategoryID); if (li_father.className == "Fechado") { li_father.className = "Aberto"; } outro { li_father.className = "Fechado"; } }
função switchNote(iCategoryID, mostrar) { var li_pai = el("li_" + iCategoryID); se (mostrar) { var ul = document.createElement("ul"); ul.id = "ul_note_" + iCategoryID; var nota = document.createElement("li"); note.className = "Criança"; var img = document.createElement("img"); img.className = "s"; img.src = "../../Styles/tree_css/s.gif"; var a = document.createElement("a"); a.href = "javascript:void(0);"; a.innerHTML = "请稍候"; nota.appendChild(img); nota.appendChild(a); ul.appendChild(nota); li_father.appendChild(ul); } outro { var ul = el("ul_note_" + iCategoryID); se (ul) { li_pai.removeChild(ul); } } }
// 加载根节点var árvore = el("CategoryTree"); var raiz = document.createElement("li"); raiz.id = "li_0"; árvore.appendChild(raiz); // 加载页面时显示第一级分类ExpandSubCategory(0); função PreloadFormUrl(iCategoryID) { // 采用同步调用的方式获取图片的信息var ds = AjaxMethod.GetFormsList(iCategoryID).value; // 如果返回了结果se (ds) { // 判断数据表是否不为空if (ds.Tables[0].Rows.length > 0) { // 返回的信息数据表dt = ds.Tabelas[0]; el("furl").src = dt.Rows[0].FormUrl; } else // 分类下没有{ } } }