dtree Webページのツリーメニューとオブジェクトコレクションをjsに転送し、動的にnodes_javascriptスキルを生成します

WBOY
リリース: 2016-05-16 17:54:19
オリジナル
1509 人が閲覧しました

winform側ではツリーメニューが非常に便利で、これを実装すると非常に便利なので、ページ上にツリーメニューを入れてみようと思いました。私は dtree というツールを選びました。インターネット上にはページ ツリー メニューを実装する方法がたくさんありますが、これが使いやすく、構成も比較的シンプルですぐに使えると思います。 dtree は純粋な js であるため、jar パッケージをインポートする必要はなく、構成は js でのみ構成する必要があります。そして今では、インターネット上で専門家によって修正され、より便利なチェックボックスが追加された改良版が数多く公開されています。開発プロセス中、最も難しいのはデータのやり取りです。dtree は純粋な JS であるため、私の方法では、最初にバックグラウンド操作を通じてデータをページに渡し、次にそれを渡します。 jsの中に。バックグラウンドでページに渡されたデータを文字列に連結し、それを js で切り取って配列に統合します。
バックグラウンド データ処理コード:

コードをコピー コードは次のとおりです:



コードは次のとおりです。 String GetLinkManByDID( ){
try {
directories = this.directoryService.GetAllLinkMans();
String direStringstring = ""; = "" ;
for (int i = 0; i if (idireStringstring =directories.get (i) .getID() "-" directory.get(i).getDirectoryName() " ";
}
else {
direStringstring =directories.get(i).getID() "-" directory.get (i).getDirectoryName();
}
}
for (int i = 0; i if (ilinkString =selectlinkMans.get(i).getDirectory().getID() "-" selectlinkMans.get(i).getName() "-" selectlinkMans.get(i).getPhoneNum () " ";
}
else {
linkString =selectlinkMans.get(i).getDirectory().getID() "-" selectlinkMans.get(i).getName() "-" selectlinkMans .get( i).getPhoneNum();
}
}
ActionContext.getContext().getSession().put("ディレクトリ", direStringstring); (). put("allLinkMans", linkString);
} catch (例外 e) {
e.printStackTrace();
}


私は s2sh を使用しているので、セッションにデータを保存する方法は
ActionContext.getContext().getSession().put(key, value)
その後、ページはデータを取得します。



コードをコピーします コードは次のとおりです。


treeload は自分で書いた js ファイル内のメソッドです。
js:



コードをコピー
コードは次のとおりです:

コード関数 Treeload(linkmans , dires){
var linklist= String2linklist(linkmans);
var direslist = String2direlist(dires);
d = new dTree('d','./');
d.config.checkbox=true;//表示チェックボックス
d.config.objValueId='phoneNums';
d.icon.root='images/hr/home.png'、
d.icon.folder='images/hr/group.gif'、
d.icon.folderOpen='images/ hr/group.gif',
d.icon.node='images/hr/nan.gif',
d.add(0,-1,'联系人',null);
var int = 0;
var direids = new Array();
var direpid= new Array();
for ( int; int < direslist.length; int ) {
d.add(int 1,0,direslist[int].name,false);
direids.push(direslist[int].id);
direpid.push(int 1);
}
d.add(int 1,0,'全部联系人',false);
direpid.push(int 1);
for ( var int2 = 0; int2 for ( var int3 = 0; int3 if(linklist[int2] ].did==direids[int3])
{
int ;
d.add(int 1,direpid[int3],linklist[int2].name,false,linklist[int2].phone);
}
}
}
for ( var int4 = 0; int4 < linklist.length; int4 ) {
int ;
d.add(int 1,direpid[direpid.length-1],linklist[int4].name,false,linklist[int4].phone);
}

document.write(d);
}
function String2linklist(linkmans){
var linkarray = new Array();
var a = linkmans.split(' ');
// アラート(a[0]);
for ( var int = 0; int var b = a[int].split('-');
// アラート(b[2]);
linkarray.push(new linkman(b[0],b[1],b[2]));
}
リンク配列を返します。
}
function String2direlist(dires){
var direlist = new Array();
var a = dires.split(' ');
for ( var int = 0; int var b = a[int].split('-');
// アラート(b[1]);
direlist.push(new dire(b[0],b[1]));
}
ダイレリストを返します。
}
function linkman(Did,name,phone){
this.did = Did;
this.name = 名前 ;
this.phone=電話;
}
function dire(id ,name){
this.id= id;
this.name = 名前;
}

最後に、效果图

image image

我改写的js:
复制代代码如下:

// Node object
function Node(id, pid, name, checked, value, icon ,url, title, target, iconOpen, open) {
this.id = id;
this.pid = pid;
this.name = name;
//是否在该节点添加复选框并设置选中状态,true:选中,false:不选中,null:不添加
this.checked = checked==null?null:(checked || false);

this.value = value;//增加value属性,选中复选框,输入框内得到的就是这个value值
this.url = url;
this.title = title;
this.target = target;
this.icon = icon;
this.iconOpen = iconOpen;
this._io = open || false;
this._is = false;
this._ls = false;
this._hc = false;
this._ai = 0;
this._p;
};
// Tree object
function dTree(objName, path) {
//路径
this.path = path ||'';
//加载css文件
this.loadCssFile(this.path+'dtree.css');
this.config = {
target : null,
folderLinks : true,
useSelection : true,
useCookies : true,
useLines : true,
useIcons : true,
useStatusText : false,
closeSameLevel : false,
inOrder : false,
//是否显示复选框,true显示,false不显示
checkbox:false,
objValueId:''
}
this.icon = {
root : this.path + 'images/img/base.gif',
folder : this.path + 'images/img/folder.gif',
folderOpen : this.path + 'images/img/folderopen.gif',
node : this.path + 'images/img/page.gif',
empty : this.path + 'images/img/empty.gif',
line : this.path + 'images/img/line.gif',
join : this.path + 'images/img/join.gif',
joinBottom : this.path + 'images/img/joinbottom.gif',
plus : this.path + 'images/img/plus.gif',
plusBottom : this.path + 'images/img/plusbottom.gif',
minus : this.path + 'images/img/minus.gif',
minusBottom : this.path + 'images/img/minusbottom.gif',
nlPlus : this.path + 'images/img/nolines_plus.gif',
nlMinus : this.path + 'images/img/nolines_minus.gif'
};
this.obj = objName;
this.aNodes = [];
this.aIndent = [];
this.root = new Node(-1);
this.selectedNode = null;
this.selectedFound = false;
this.completed = false;
};
//设置选中节点
dTree.prototype.checkedNodes=function(){
if(this.config.objValueId==''){
return;
}
var val=document.getElementById(this.config.objValueId).value;
if(val==''){
return;
}
val=val.split(',');
var o=null;
for(var i=0;io=document.getElementById('cbx_'+this.obj+val[i]);
if(o){
o.checked=true;
}
}
};
//实现输入框内自动输入选中项的value值
dTree.prototype.update=function(){
if(this.config.objValueId==''){
return;
}
var cbx=null,v=[];
// v.push(aa);
var ns=this.aNodes;
for(var i=0;icbx=document.getElementById('cbx_'+this.obj+ns[i].id);
if(cbx){
if(cbx.checked){
if(ns[i].pid!='0'){
v.push(cbx.value);//原先是得到节点的id的,换成value,可以实现选中联系人,得到号码。
}
}
}
}
document.getElementById(this.config.objValueId).value=v.join();
};
//加载css文件
dTree.prototype.loadCssFile=function (file) {
try{
var head=document.getElementsByTagName("head")[0];
var links=head.getElementsByTagName('link');
var i=0;
for(var i=0;iif(links[i].getAttribute('href').toLowerCase().indexOf(file.toLowerCase())>-1){
return;
}
}
var f = document.createElement("link");
f.setAttribute("rel", "stylesheet");
f.setAttribute("type", "text/css");
f.setAttribute("href", file);
head.appendChild(f);
}catch(ex){
alert('加载css文件出错:'+ex.message);
}
};
// Adds a new node to the node array
dTree.prototype.add = function(id, pid, name, checked, value,icon,url, title, target,iconOpen, open) {
this.aNodes[this.aNodes.length] = new Node(id, pid, name, checked, value,icon,url, title, target, iconOpen, open);
};
// Open/close all nodes
dTree.prototype.openAll = function() {
this.oAll(true);
};
dTree.prototype.closeAll = function() {
this.oAll(false);
};
// Outputs the tree to the page
dTree.prototype.toString = function() {
var str = '
\n';
if (document.getElementById) {
if (this.config.useCookies) this.selectedNode = this.getSelected();
str += this.addNode(this.root);
} else str += 'Browser not supported.';
str += '
';
if (!this.selectedFound) this.selectedNode = null;
this.completed = true;
return str;
};
// Creates the tree structure
dTree.prototype.addNode = function(pNode) {
var str = '';
var n=0;
if (this.config.inOrder) n = pNode._ai;
for (n; nif (this.aNodes[n].pid == pNode.id) {
var cn = this.aNodes[n];
cn._p = pNode;
cn._ai = n;
this.setCS(cn);
if (!cn.target && this.config.target) cn.target = this.config.target;
if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);
if (!this.config.folderLinks && cn._hc) cn.url = null;
if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {
cn._is = true;
this.selectedNode = n;
this.selectedFound = true;
}
str += this.node(cn, n);
if (cn._ls) break;
}
}
return str;
};
// Creates the node icon, url and text
dTree.prototype.node = function(node, nodeId) {
var str = '
' + this.indent(node, nodeId);
if (this.config.useIcons) {

if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node.pid==0) ? this.icon.folder : this.icon.node);
//node.pid==0 这个条件是我自己改的,如果群组内无人的话,还是用群组的icon,而不是联系人的icon,大家可以自己试试的
if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;
if (this.root.id == node.pid) {
node.icon = this.icon.root;
node.iconOpen = this.icon.root;
}
str += '';
}
/***添加checkbox显示***/
if(this.config.checkbox&&node.checked!=null){
str += '';
}
if (node.url) {
str += 'if (node.title) str += ' title="' + node.title + '"';
if (node.target) str += ' target="' + node.target + '"';
if (this.config.useStatusText) str += ' onmouseover="window.status=\'' + node.name + '\';return true;" onmouseout="window.status=\'\';return true;" ';
if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))
str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';
str += '>';
}
else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)
str += '
';
str += node.name;
if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '
';
str += '
';
if (node._hc) {
str += '
';
str += this.addNode(node);
str += '
';
}
this.aIndent.pop();
文字列を返します。
};
// 空のアイコンと線のアイコンを追加します
dTree.prototype.indent = function(node, nodeId) {
var str = '';
if (this.root.id != node.pid) {
for (var n=0; nstr = '';
(node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
if (node._hc) {
str = ';
} else str = '';
}
文字列を返します。
};
// ノードに子があるかどうか、およびそれが最後の兄弟であるかどうかを確認します。
dTree.prototype.setCS = function(node) {
var lastId;
for (var n=0; nif (this.aNodes[n].pid == node.id) node._hc = true;
if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;
}
if (lastId==node.id) node._ls = true;
};
// 選択されたノードを返します
dTree.prototype.getSelected = function() {
var sn = this.getCookie('cs' this.obj);
リターン (sn) ? sn : null;
};
// 選択したノードを強調表示します
dTree.prototype.s = function(id) {
if (!this.config.useSelection) return;
var cn = this.aNodes[id];
if (cn._hc && !this.config.folderLinks) return;
if (this.selectedNode != id) {
if (this.selectedNode || this.selectedNode==0) {
eOld = document.getElementById("s" this.obj this.selectedNode) ;
eOld.className = "ノード";
}
eNew = document.getElementById("s" this.obj id);
eNew.className = "nodeSel";
this.selectedNode = id;
if (this.config.useCookies) this.setCookie('cs' this.obj, cn.id);
}
};
// 開閉を切り替えます
dTree.prototype.o = function(id) {
var cn = this.aNodes[id];
this.nodeStatus(!cn._io, id, cn._ls);
cn._io = !cn._io;
if (this.config.closeSameLevel) this.closeLevel(cn);
if (this.config.useCookies) this.updateCookie();
//更新选中值if(this.config.objValueId!='')
this.update();
};
// すべてのノードを開くか閉じる
dTree.prototype.oAll = function(status) {
for (var n=0; nif ( this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {
this.nodeStatus(status, n, this.aNodes[n]._ls)
this .aNodes[n]._io = ステータス;
}
}
if (this.config.useCookies) this.updateCookie();
};
// ツリーを特定のノードに開きます
dTree.prototype.openTo = function(nId, bSelect, bFirst) {
if (!bFirst) {
for (var n=0; n< ;this.aNodes.length; n ) {
if (this.aNodes[n].id == nId) {
nId=n;
休憩;
}
}
}
var cn=this.aNodes[nId];
if (cn.pid==this.root.id || !cn._p) return;
cn._io = true;
cn._is = bSelect;
if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);
if (this.completed && bSelect) this.s(cn._ai);
else if (bSelect) this._sn=cn._ai;
this.openTo(cn._p._ai, false, true);
};
// 特定のノードと同じレベルにあるすべてのノードを閉じます
dTree.prototype.closeLevel = function(node) {
for (var n=0; nif (this.aNodes[n].pid == ノード.pid && this.aNodes[n].id != ノード.id && this.aNodes[n]._hc) {
this.nodeStatus( false、n、this.aNodes[n]._ls);
this.aNodes[n]._io = false;
this.closeAllChildren(this.aNodes[n]);
}
}
}
// ノードのすべての子を閉じます
dTree.prototype.closeAllChildren = function(node) {
for (var n=0; nif (this.aNodes[n].pid == ノード.id && this.aNodes[n]._hc) {
if (this.aNodes[n]._io ) this.nodeStatus(false, n, this.aNodes[n]._ls);
this.aNodes[n]._io = false;
this.closeAllChildren(this.aNodes[n]);
}
}
}
// ノードのステータスを変更します (オープンまたはクローズ)
dTree.prototype.nodeStatus = function(status, id,bottom) {
try {
eDiv = document.getElementById('d' this.obj id);
eJoin = document.getElementById('j' this.obj id);
//****选择
if(this.config.checkbox){
cbx = document.getElementById('cbx_' this.obj id);
cbx.checked=ステータス;
cbxChild= eDiv.getElementsByTagName('input');
for(var i=0 ;icbxChild[i].checked=status;
}
}
//****选择
if (this.config.useIcons) {
eIcon = document.getElementById('i' this.obj id);
eIcon.src = (ステータス) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;
}
eJoin.src = (this.config.useLines)?
((ステータス)?((下)?this.icon.minus下:this.icon.minus):((下)?this.icon.plus下:this.icon.plus)):
(( status)?this.icon.nlMinus:this.icon.nlPlus);
eDiv.style.display = (ステータス) ? 'ブロック': 'なし';
}キャッチ(例){
}
};
// [Cookie] Cookie をクリアします
dTree.prototype.clearCookie = function() {
var now = new Date();
var Yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);
this.setCookie('co' this.obj, 'cookieValue', Yesterday);
this.setCookie('cs' this.obj, 'cookieValue', Yesterday);
};
// [Cookie] Cookie に値を設定します
dTree.prototype.setCookie = function(cookieName, cookieValue, Expires, path, domain, secure) {
document.cookie =
escape(cookieName ) '='エスケープ(cookieValue)
(期限切れ ? '; 期限切れ=' 期限切れ.toGMTString() : '')
(パス ? '; path=' パス : '')
(ドメイン ? '; '; ドメイン=' ドメイン : '')
(セキュア ? '; セキュア' : '');
};
// [Cookie] Cookie から値を取得します
dTree.prototype.getCookie = function(cookieName) {
var cookieValue = '';
var posName = document.cookie.indexOf(escape(cookieName) '=');
if (posName != -1) {
var posValue = posName (escape(cookieName) '=').length;
var endPos = document.cookie.indexOf(';', posValue);
if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));
else cookieValue = unescape(document.cookie.substring(posValue));
}
return (cookieValue);
};
// [Cookie] 開いているノードの ID を文字列として返します
dTree.prototype.updateCookie = function() {
var str = '';
for (var n=0; nif (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id ) {
if (str) str = '.';
str = this.aNodes[n].value;
}
}
this.setCookie('co' this.obj, str);
};
// [Cookie] ノード ID が Cookie 内にあるかどうかを確認します
dTree.prototype.isOpen = function(id) {
var aOpen = this.getCookie('co' this.obj).split ('.');
for (var n=0; nif (aOpen[n] == id) return true;
false を返します。
};
// プッシュとポップがブラウザによって実装されていない場合
if (!Array.prototype.push) {
Array.prototype.push = function array_push() {
for(var i= 0;ithis[this.length]=arguments[i];
return this.length;
}
};
if (!Array.prototype.pop) {
Array.prototype.pop = function array_pop() {
lastElement = this[this.length-1];
this.length = Math.max(this.length-1,0);
lastElement を返します。
}
};
大家は、以下を利用して、小さな工程の実験を試すことができ、dtree も問題ありません。
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート