//** Powered by Fason
//** Email: fason_pfx@hotmail.com
var icon={
root :'image/root.gif',
open :'image/open.png',
close :'image/close.png',
file :'image/file.png',
Rplus :'image/Rplus.gif',
Rminus :'image/Rminus.gif',
join :'image/T.gif',
joinbottom:'image/L.gif',
plus :'image/Tplus.gif',
plusbottom:'image/Lplus.gif',
minus :'image/Tminus.gif',
minusbottom:'image/Lminus.gif',
blank :'image/blank.gif',
line :'image/I.gif'
};
var Global={
id:0,
getId:function(){return this.id++;},
all:[],
selectedItem:null,
defaultText:"treeItem",
defaultAction:"javascript:void(0)",
defaultTarget:"_blank"
}
function preLoadImage(){
for(i in icon){
var tem=icon[i];
icon[i]=new Image()
icon[i].src=tem
}
};preLoadImage();
function treeItem(text,action,target,title,Icon)
{
this.id=Global.getId();
this.level=0;
this.text=text?text:Global.defaultText;
this.action=action?action:Global.defaultAction;
this.target=target?target:Global.defaultTarget;
this.title=title?title:this.text;
this.isLast=true;
this.childNodes=new Array();
this.indent=new Array();
this.parent=null;
var c =0;
if(getCookie("item"+this.id) != null) c = getCookie("item"+this.id);
this.open=parseInt(c);
this.load=false;
this.setuped=false;
this.JsItem=null;
this.container=document.createElement("div");
this.icon=Icon;
Global.all[Global.all.length]=this;
}
treeItem.prototype.toString = function()
{
var o = this;
var oItem = document.createElement("div");
oItem.id = "treeItem"+this.id
oItem.className = "treeItem";
oItem.noWrap = true;
oItem.onselectstart = function(){ return false;}
oItem.oncontextmenu = function(){ return false;}
this.JsItem = oItem;
this.drawIndents();
var iIcon = document.createElement("img");
iIcon.align = "absmiddle";
iIcon.src = this.childNodes.length>0?(this.open?(this.level>0?(this.isLast?icon.minusbottom.src:icon.minus.src):icon.Rminus.src):(this.level>0?(this.isLast?icon.plusbottom.src:icon.plus.src):icon.Rplus.src)):(this.level>0?(this.isLast?icon.joinbottom.src:icon.join.src):icon.blank.src);
iIcon.id = "treeItem-icon-handle-" + this.id;
iIcon.onclick = function(){ o.toggle();};
oItem.appendChild(iIcon);
var iIcon = document.createElement("img");
iIcon.align = "absmiddle";
iIcon.src = this.icon?this.icon:(this.childNodes.length>0?(this.open?icon.open.src:icon.close.src):icon.file.src);
iIcon.id = "treeItem-icon-folder-" + this.id;
iIcon.onclick = function(){ o.select();};
iIcon.ondblclick = function(){ o.toggle();};
oItem.appendChild(iIcon);
var eText = document.createElement("span");
var eA=document.createElement("a");
eA.innerHTML = this.text;
eA.target = this.target;
eA.href = this.action;
eA.onkeydown = function(e){ return o.KeyDown(e);}
if(this.action == Global.defaultAction) eA.onclick = function(){ o.toggle(); return false;}
eText.appendChild(eA);
eText.id = "treeItem-text-" + this.id;
eText.className = "treeItem-unselect"
eText.onclick = function(){ o.select(1);};
eText.title = this.title;
oItem.appendChild(eText);
this.container.id = "treeItem-container-"+this.id;
this.container.style.display = this.open?"":"none";
oItem.appendChild(this.container);
return oItem;
}
treeItem.prototype.root = function()
{
var p = this;
while(p.parent)
p = p.parent;
return p;
}
treeItem.prototype.setText = function(sText)
{
if(this.root().setuped)
{
var oItem = document.getElementById("treeItem-text-" + this.id);
oItem.firstChild.innerHTML = sText;
}
this.text = sText;
}
treeItem.prototype.setIndent = function(l,v)
{
for(var i=0;i
this.childNodes[i].indent[l] = v;
this.childNodes[i].setIndent(l,v);
}
}
treeItem.prototype.drawIndents = function()
{
var oItem = this.JsItem;
for(var i=0;i
iIcon.align = "absmiddle";
iIcon.id = "treeItem-icon-" + this.id + "-" + i;
iIcon.src = this.indent[i]?icon.blank.src:icon.line.src;
oItem.appendChild(iIcon);
}
}
treeItem.prototype.add = function(oItem)
{
oItem.parent=this;
this.childNodes[this.childNodes.length]=oItem;
oItem.level=this.level+1;
oItem.indent=this.indent.concat();
oItem.indent[oItem.indent.length]=this.isLast;
if(this.childNodes.length>1){
var o=this.childNodes[this.childNodes.length-2];
o.isLast=false;
o.setIndent(o.level,0);
if(this.root().setuped)o.reload(1);
}
else if(this.root().setuped)
this.reload(0);
this.container.appendChild(oItem.toString());
this.container.style.display=this.open?"":"none";
}
treeItem.prototype.loadChildren = function()
{
//do something
}
treeItem.prototype.remove = function()
{
var tmp = this.getPreviousSibling();
//if(tmp){ tmp.select();}
this.removeChildren();
var p = this.parent;
if(!p){ return };
if(p.childNodes.length>0){
var o = p.childNodes[p.childNodes.length-1];
o.isLast = true;
o.setIndent(o.level,1);
if(o.root().setuped)o.reload(1);
}
else
p.reload();
}
treeItem.prototype.removeChildren = function ()
{
if(this == Global.selectedItem){ Global.selectedItem = null;}
for(var i=this.childNodes.length-1;i>=0;i--)
this.childNodes[i].removeChildren();
var o = this;
var p = this.parent;
if (p) { p.childNodes = p.childNodes._remove(o);}
Global.all[this.id] = null
var oItem = document.getElementById("treeItem"+this.id);
if (oItem) { oItem.parentNode.removeChild(oItem); }
}
treeItem.prototype.reload = function(flag)
{
if (flag){
for(var j=0;j
}
document.getElementById("treeItem-icon-handle-" +this.id).src = this.childNodes.length>0?(this.open?(this.level>0?(this.isLast?icon.minusbottom.src:icon.minus.src):icon.Rminus.src):(this.level>0?(this.isLast?icon.plusbottom.src:icon.plus.src):icon.Rplus.src)):(this.level>0?(this.isLast?icon.joinbottom.src:icon.join.src):icon.blank.src);
if (!this.icon)
document.getElementById("treeItem-icon-folder-"+this.id).src = this.childNodes.length>0?(this.open?icon.open.src:icon.close.src):icon.file.src;
}
treeItem.prototype.toggle = function()
{
if(this.childNodes.length>0){
if(this.open)
this.collapse();
else
this.expand();
}
}
treeItem.prototype.expand = function()
{
this.open=1;
setCookie("item"+this.id,1);
if(!this.load){
this.load=true;
this.loadChildren();
this.reload(1);
}
else
this.reload(0);
this.container.style.display = "";
}
treeItem.prototype.collapse = function()
{
this.open=0;
setCookie("item"+this.id,0);
this.container.style.display = "none";
this.reload(0);
this.select(1);
}
treeItem.prototype.expandAll = function()
{
if(this.childNodes.length>0 && !this.open)this.expand();
this.expandChildren();
}
treeItem.prototype.collapseAll = function()
{
this.collapseChildren();
if(this.childNodes.length>0 && this.open)this.collapse();
}
treeItem.prototype.expandChildren = function()
{
for(var i=0;i
}
treeItem.prototype.collapseChildren = function()
{
for(var i=0;i
}
treeItem.prototype.openURL=function()
{
if(this.action!=Global.defaultAction){
window.open(this.action,this.target);
}
}
treeItem.prototype.select=function(o)
{
if (Global.selectedItem) Global.selectedItem.unselect();
var oItem = document.getElementById("treeItem-text-" + this.id);
oItem.className = "treeItem-selected";
oItem.firstChild.focus();
Global.selectedItem = this;
if(!o) this.openURL();
}
treeItem.prototype.unselect=function()
{
var oItem = document.getElementById("treeItem-text-" + this.id);
oItem.className = "treeItem-unselect";
oItem.firstChild.blur();
Global.selectedItem = null;
}
treeItem.prototype.setup = function(oTaget)
{
oTaget.appendChild(this.toString());
this.setuped = true;
if(this.childNodes.length>0 || this.open) this.expand();
}
/**********************************************/
/*
Arrow Key Event
*/
/**********************************************/
treeItem.prototype.getFirstChild = function()
{
if(this.childNodes.length>0 && this.open)
return this.childNodes[0];
return this;
}
treeItem.prototype.getLastChild = function()
{
if(this.childNodes.length>0 && this.open)
return this.childNodes[this.childNodes.length-1].getLastChild();
return this;
}
treeItem.prototype.getPreviousSibling = function()
{
if(!this.parent) return null;
for(var i=0;i
if(i == 0)
return this.parent;
else
return this.parent.childNodes[i-1].getLastChild();
}
treeItem.prototype.getNextSibling = function()
{
if(!this.parent) return null;
for(var i=0;i
if(i == this.parent.childNodes.length-1)
return this.parent.getNextSibling();
else
return this.parent.childNodes[i+1];
}
treeItem.prototype.KeyDown=function(e){
var code,o;
if(!e) e = window.event;
code = e.which ? e.which : e.keyCode;
o = this;
if(code == 37)
{
if(o.open) o.collapse();
else
{
if(o.parent) o.parent.select();
}
return false;
}
else if(code == 38)
{
var tmp = o.getPreviousSibling();
if(tmp) tmp.select();
return false;
}
else if(code == 39)
{
if(o.childNodes.length>0)
{
if(!o.open) o.expand();
else
{
var tmp = o.getFirstChild();
if(tmp) tmp.select();
}
}
return false;
}
else if(code == 40)
{
if(o.open&&o.childNodes.length>0)o.getFirstChild().select();
else
{
var tmp = o.getNextSibling();
if(tmp) tmp.select();
}
return false;
}
else if(code == 13)
{
o.toggle();
o.openURL();
return false;
}
return true;
}
/*****************************************************/
Array.prototype.indexOf=function(o){
for(var i=0;i
return -1;
}
Array.prototype.removeAt=function(i){
return this.slice(0,i).concat(this.slice(i+1))
}
Array.prototype._remove=function(o){
var i=this.indexOf(o);
if(i!= -1) return this.removeAt(i)
return this
}
/*****************************************************/
/*****************************************************/
/*
xtreeItem Class
*/
/*****************************************************/
function xtreeItem(uid,text,action,target,title,Icon,xml){
this.uid=uid;
this.base=treeItem;
this.base(text,action,target,title,Icon);
this.Xml=xml;
}
xtreeItem.prototype=new treeItem;
xtreeItem.prototype.parseElement=function(dom){
return dom.selectSingleNode("/TreeNode");
}
xtreeItem.prototype.addNodesLoop = function(oItem)
{
for(var i=0;i
var o = oItem.childNodes[i];
var tmp = new xtreeItem(o.getAttribute("id"),o.getAttribute("text"),o.getAttribute("href"),o.getAttribute("target"),o.getAttribute("title"),o.getAttribute("icon"),o.getAttribute('Xml'));
this.add(tmp);
if(o.getAttribute("Xml")) tmp.add(new treeItem("Loading..."));
else
{
tmp.load=true;
tmp.addNodesLoop(o);
}
}
}
xtreeItem.prototype.loadChildren=function()
{
var oItem = this;
var oLoad = oItem.childNodes[0];
var XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
XmlHttp.onreadystatechange=function(){
if(XmlHttp.readyState==4){
if(XmlHttp.status==200){
if(XmlHttp.responseXML.xml == ""){ oLoad.setText("unavaible1");return;}
var XmlItem=oItem.parseElement(XmlHttp.responseXML.documentElement);
if(XmlItem.childNodes.length == 0){ oLoad.setText("unavaible") }
else
{
oItem.addNodesLoop(XmlItem);
for(var i=0;i
if(parseInt(getCookie("item"+oItem.childNodes[i].id)) ==1)
{ oItem.childNodes[i].expand();}
}
if(Global.selectedItem == oItem.childNodes[0])oItem.select();
oLoad.remove();
}
}
else{
oLoad.setText("unavaible");
}
XmlHttp = null;
oItem.select(1);
}
}
try{
XmlHttp.open("get",this.Xml+(/\?/g.test(this.Xml)?"&":"?")+"temp="+Math.random(),true);
XmlHttp.send();
}catch(e){ oLoad.setText("unavaible");}
}
xtreeItem.prototype.setup=function(oTarget){
this.add(new treeItem("Loading..."));
oTarget.appendChild(this.toString());
this.setuped=true;
if(this.childNodes.length>0 || this.open) this.expand();
}
/*****************************************************/
function setCookie(name,value)
{
var Days = 7;
var exp = new Date();
exp.setTime(exp.getTime() + Days*24*60*60*1000);
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
}
function getCookie(name)
{
var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
if(arr != null) return unescape(arr[2]); return null;
}
function delCookie(name)
{
var exp = new Date();
exp.setTime(exp.getTime() - 1);
var cval=getCookie(name);
if(cval!=null) document.cookie= name + "="+cval+";expires="+exp.toGMTString();
}

Python和JavaScript在社区、库和资源方面的对比各有优劣。1)Python社区友好,适合初学者,但前端开发资源不如JavaScript丰富。2)Python在数据科学和机器学习库方面强大,JavaScript则在前端开发库和框架上更胜一筹。3)两者的学习资源都丰富,但Python适合从官方文档开始,JavaScript则以MDNWebDocs为佳。选择应基于项目需求和个人兴趣。

从C/C 转向JavaScript需要适应动态类型、垃圾回收和异步编程等特点。1)C/C 是静态类型语言,需手动管理内存,而JavaScript是动态类型,垃圾回收自动处理。2)C/C 需编译成机器码,JavaScript则为解释型语言。3)JavaScript引入闭包、原型链和Promise等概念,增强了灵活性和异步编程能力。

不同JavaScript引擎在解析和执行JavaScript代码时,效果会有所不同,因为每个引擎的实现原理和优化策略各有差异。1.词法分析:将源码转换为词法单元。2.语法分析:生成抽象语法树。3.优化和编译:通过JIT编译器生成机器码。4.执行:运行机器码。V8引擎通过即时编译和隐藏类优化,SpiderMonkey使用类型推断系统,导致在相同代码上的性能表现不同。

JavaScript在现实世界中的应用包括服务器端编程、移动应用开发和物联网控制:1.通过Node.js实现服务器端编程,适用于高并发请求处理。2.通过ReactNative进行移动应用开发,支持跨平台部署。3.通过Johnny-Five库用于物联网设备控制,适用于硬件交互。

我使用您的日常技术工具构建了功能性的多租户SaaS应用程序(一个Edtech应用程序),您可以做同样的事情。 首先,什么是多租户SaaS应用程序? 多租户SaaS应用程序可让您从唱歌中为多个客户提供服务

本文展示了与许可证确保的后端的前端集成,并使用Next.js构建功能性Edtech SaaS应用程序。 前端获取用户权限以控制UI的可见性并确保API要求遵守角色库

JavaScript是现代Web开发的核心语言,因其多样性和灵活性而广泛应用。1)前端开发:通过DOM操作和现代框架(如React、Vue.js、Angular)构建动态网页和单页面应用。2)服务器端开发:Node.js利用非阻塞I/O模型处理高并发和实时应用。3)移动和桌面应用开发:通过ReactNative和Electron实现跨平台开发,提高开发效率。

JavaScript的最新趋势包括TypeScript的崛起、现代框架和库的流行以及WebAssembly的应用。未来前景涵盖更强大的类型系统、服务器端JavaScript的发展、人工智能和机器学习的扩展以及物联网和边缘计算的潜力。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

禅工作室 13.0.1
功能强大的PHP集成开发环境

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。