- 浏览: 138305 次
- 性别:
- 来自: 北京
最新评论
-
安然格思:
太久远了,文本都无法显示了
jbpm3.1中文文档 .chm -
zht110227:
这个??如此简单
onchange事件顿悟 -
xdw1626:
谢谢了,找07的
asktom 合订本集合 -
by5739:
- -这是3.0的文档吧...好像我用3.1.4...都是通过 ...
jbpm3.1中文文档 .chm -
lovefly_zero:
太强了 太感谢了
B/S开发中常用的javaScript
转载:快乐笛子的博客(http://www.happyshow.org/view.php?id=107)
演示地址:http://www.happyshow.org/sample/20060918/ajax.html
使用了ajax,使原来非常繁琐的无限级目录树变得简单多了。并且由于是异步获取节点数据,所以服务器的压力比原来遍历数据库的方法小多了。
在这里不得不提到css,通过定义
-
的marging-left值,使树中的父节点与子节点才错位区分开来,实现简单,并且编写的js无需再考虑父子节点的错位问题。
本例中css还有一个大用处,当一个节点展开后又收缩,再点击展开时,无需再读取子节点数据,而是把收缩前的文档结构重新显示出来(display:block),这样做既可以记忆用户最后点击的节点,又可以减少读取数据的次数,又一次提了速度。
本例目录树的文档结构如下:
<div id="tree">
<ul>
<li>中国
<ul>
<li>广东</li>
<li>广西</li>
<li>湖南</li>
<li>福建
<ul>
<li>厦门</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
一个节点级别用一个 ul 表示,因为ul是块级元素(默认样式display==block),所以其与父节点的文字不在同一行显示,又因为ul有margin-left修饰,因此ul实现了换行又缩进的效果,即形成了子节点。<ul>
<li>中国
<ul>
<li>广东</li>
<li>广西</li>
<li>湖南</li>
<li>福建
<ul>
<li>厦门</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
数据结构如下:
注意上图中id与parentID的关系。
ajax通过访问一个asp文件获得数据,该asp文件程序如下:
<%@language=vbscript codepage=65001%>
<%
session.codepage = 65001
Response.CharSet = "utf-8"
response.contenttype="text/xml"
<%
session.codepage = 65001
Response.CharSet = "utf-8"
response.contenttype="text/xml"
Response.expires=0
Response.AddHeader"pragma","no-cache"
Response.AddHeader"cache-control","no-store"
Response.AddHeader"pragma","no-cache"
Response.AddHeader"cache-control","no-store"
dim db
Set Conn=Server.CreateObject("ADODB.Connection")
db="data.mdb"
connstr ="Provider = Microsoft.Jet.OLEDB.4.0; Data Source ="& Server.MapPath(db)
Conn.Open connstr
'response.write("<?xml version=""1.0"" encoding=""utf-8""?>"&Chr(13))
Dim listid
listid = Trim(request("id"))
If listid = "" Then
response.End()
else
Set rs = server.CreateObject("adodb.recordset")
sql = "select * from [add] where parentID="&listid
rs.open sql,conn,1,1
if rs.eof or rs.bof then
response.write("none!!!")
Else
response.write("<area>")
Do While Not rs.eof
response.write("<address>"&rs("id")&"|"&rs("addname")&"|"&rs("url")&"</address>")
rs.movenext
Loop
response.write("</area>")
End If
rs.close
Set rs = nothing
Set Conn=Server.CreateObject("ADODB.Connection")
db="data.mdb"
connstr ="Provider = Microsoft.Jet.OLEDB.4.0; Data Source ="& Server.MapPath(db)
Conn.Open connstr
'response.write("<?xml version=""1.0"" encoding=""utf-8""?>"&Chr(13))
Dim listid
listid = Trim(request("id"))
If listid = "" Then
response.End()
else
Set rs = server.CreateObject("adodb.recordset")
sql = "select * from [add] where parentID="&listid
rs.open sql,conn,1,1
if rs.eof or rs.bof then
response.write("none!!!")
Else
response.write("<area>")
Do While Not rs.eof
response.write("<address>"&rs("id")&"|"&rs("addname")&"|"&rs("url")&"</address>")
rs.movenext
Loop
response.write("</area>")
End If
rs.close
Set rs = nothing
End if
%>
如果从浏览器上访问此asp文件,结果是一个utf-8格式的标准的xml文件。%>
前台页面所有代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ajax 无限树 by 快乐笛子(misshjn@163.com)</title>
<style type="text/css">
*{ padding:0; margin:0}
body { font:12px "宋体"}
.tree { border:1px solid #ccc; margin:30px; width:200px; height:450px; float:left; padding:12px 12px 12px 0px}
.tree ul { margin-left:12px}
.tree li { list-style-type:none; margin:10px 0px; }
.tree li span { color:#FF0000; margin-left:4px}
.tree li a.close{ background:url(close.gif) no-repeat 1px 1px; width:11px; height:11px; font-size:1px; margin-right:4px; clear:left}
.tree li a.open{ background:url(open.gif) no-repeat 1px 1px; width:11px; height:11px; font-size:1px; margin-right:4px;clear:left}
.tree li a.nonedata{ background:url(nonedata.gif) no-repeat 1px 1px; width:11px; height:11px; font-size:1px; margin-right:4px;clear:left}
.tree li a { text-decoration:none; color:#000000; float:left}
textarea{ font-size:11px; font-family:Tahoma; width:300px; height:400px; line-height:18px; margin:30px; padding:2px}
</style>
<script type="text/javascript">
var xmlhttp;
//创建xmlhttp实例
function createxmlhttprequest(){
try {
xmlhttp = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (othermicrosoft) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
xmlhttp = false;
}
}
}
if (!xmlhttp)
alert("创建 Ajax 实例出错!");
}
function delloadingtext(){
if(innerPlace.tagName!="DIV"){
innerPlace.getElementsByTagName("a")[1].innerHTML = innerPlace.getElementsByTagName("a")[1].innerHTML.substr(0,(innerPlace.getElementsByTagName("a")[1].innerHTML.length-loadingtext.length));
}
}
var onsuccess = "";
var onloading = "";
var onerror = "";
var loadingtext = "<span>Loading...</span>"
var AjaxRequestObj = "";
//封装 ajax 类
function Ajax(method,url,asynchronous,onsuccessFun,onloadingFun,onerrorFun){
onsuccess = onsuccessFun;
onloading = onloadingFun;
onerror = onerrorFun
this.asynchronous = true;
this.onloading=function(){onloadFun};
this.onerror=function(){onerrorFun};
createxmlhttprequest();
xmlhttp.onreadystatechange = handleStateChange;
xmlhttp.open(method,url,asynchronous);
this.request = function(){xmlhttp.send(null);}
}
function handleStateChange(){
if (xmlhttp.readyState==4){
if(xmlhttp.status==200){
AjaxRequestObj = xmlhttp.responseXML;
eval(onsuccess);
}else{
if(xmlhttp.status==404)
eval(onerror); //页面不存在
}
}else{
if (xmlhttp.readyState==3)
eval(onloading);
}
}
var innerPlace="";
function innerloadingtext(obj){
if(obj.parentNode.getElementsByTagName("a")[0].className=="open"){
try{
ulobj = obj.parentNode.getElementsByTagName("ul")[0];
}catch(e){ulobj = "";}
if(typeof(ulobj)!="object")
obj.innerHTML += loadingtext;
}
}
function switchclass(id,obj){ //改变li的样式,从样式判断是否需要读取数据
if(obj.className=="close"){
obj.className="open";
try{
ulobj = obj.parentNode.getElementsByTagName("ul")[0];
}catch(e){ulobj = "";}
if(typeof(ulobj)=="object"){
if(ulobj.style.display="none"){
ulobj.style.display="block";
}else{
getValue(id,obj.parentNode);
}
}else{
getValue(id,obj.parentNode);
}
}else{
if(obj.className=="open"){obj.className="close";obj.parentNode.getElementsByTagName("ul")[0].style.display="none";}
}
}
function getValue(id,obj){ //取值
var ajaxObj = new Ajax("GET","list.asp?id="+id,true,"getsuccess()","getting()","getfailed()");
ajaxObj.request();
innerPlace = obj;
}
function getsuccess(){ //取值成功后
var addr = AjaxRequestObj.getElementsByTagName("address");
var addrLen = addr.length;
if(addrLen==0){
setTimeout("delloadingtext()",200)
innerPlace.firstChild.className="nonedata";
}else{
var subnode="";
var selfid;
var name;
var url;
for (i=0; i<addrLen; i++){
selfid = addr[i].firstChild.data.split("|")[0];
name = addr[i].firstChild.data.split("|")[1];
url = addr[i].firstChild.data.split("|")[2];
if(url!="")
subnode = subnode + "<li><a href='javascript:void(0)' onclick="switchclass("+ selfid +",this);innerloadingtext(this.parentNode.getElementsByTagName('a')[1])" class='close'> </a><a href='"+ url +"' target='mainFrame' onclick="switchclass("+ selfid +",this.parentNode.getElementsByTagName('a')[0]);innerloadingtext(this)">" + name + "</a></li>";
else
subnode = subnode + "<li><a href='javascript:void(0)' onclick="switchclass("+ selfid +",this);innerloadingtext(this.parentNode.getElementsByTagName('a')[1])" class='close'> </a><a href='javascript:void(0)' onclick="switchclass("+ selfid +",this.parentNode.getElementsByTagName('a')[0]);innerloadingtext(this)">" + name + "</a></li>";
}
subnode = "<ul>" + subnode + "</ul>";
setTimeout("delloadingtext()",200)
innerPlace.innerHTML = innerPlace.innerHTML + subnode;
document.getElementById("stru").value = document.getElementById("tree").innerHTML
}
}
function getting(){ //正在取值时
// innerPlace.innerHTML = "Loading...";
}
function getfailed(){ //取值失败
alert("err")
}
</script>
</head>
<body onload="getValue(0,document.getElementById('tree'))">
<h1 style=" margin:20px">Ajax无限级目录树:</h1>
<div class="tree" id="tree"></div>
<iframe src="" name="mainFrame" id="mainFrame" frameborder="1" style=" border:none; margin:30px; width:250px; height:400px; padding:0"></iframe>
<textarea id="stru"></textarea>
<div style="clear:both; text-align:center">Writen by misshjn (@ <a href="http://www.happyshow.org" target="_blank">http://www.happyshow.org</a>)</div>
</body>
</html>
演示示例是一个通过目录树控制iframe的例子。示例的右侧是目录树的文档结构代码,每点击一次节点,此代码都会实时变化,可以把这些代码存入cookie,这样就可以保留目录树的状态而不怕页面被刷新了。当然body标签的onload得变一变才行。但目录树的结构代码字符量比较多,这个cookie一定比较大,so~,呵呵,还是没有把保留状态的功能做入示例中。<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ajax 无限树 by 快乐笛子(misshjn@163.com)</title>
<style type="text/css">
*{ padding:0; margin:0}
body { font:12px "宋体"}
.tree { border:1px solid #ccc; margin:30px; width:200px; height:450px; float:left; padding:12px 12px 12px 0px}
.tree ul { margin-left:12px}
.tree li { list-style-type:none; margin:10px 0px; }
.tree li span { color:#FF0000; margin-left:4px}
.tree li a.close{ background:url(close.gif) no-repeat 1px 1px; width:11px; height:11px; font-size:1px; margin-right:4px; clear:left}
.tree li a.open{ background:url(open.gif) no-repeat 1px 1px; width:11px; height:11px; font-size:1px; margin-right:4px;clear:left}
.tree li a.nonedata{ background:url(nonedata.gif) no-repeat 1px 1px; width:11px; height:11px; font-size:1px; margin-right:4px;clear:left}
.tree li a { text-decoration:none; color:#000000; float:left}
textarea{ font-size:11px; font-family:Tahoma; width:300px; height:400px; line-height:18px; margin:30px; padding:2px}
</style>
<script type="text/javascript">
var xmlhttp;
//创建xmlhttp实例
function createxmlhttprequest(){
try {
xmlhttp = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (othermicrosoft) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (failed) {
xmlhttp = false;
}
}
}
if (!xmlhttp)
alert("创建 Ajax 实例出错!");
}
function delloadingtext(){
if(innerPlace.tagName!="DIV"){
innerPlace.getElementsByTagName("a")[1].innerHTML = innerPlace.getElementsByTagName("a")[1].innerHTML.substr(0,(innerPlace.getElementsByTagName("a")[1].innerHTML.length-loadingtext.length));
}
}
var onsuccess = "";
var onloading = "";
var onerror = "";
var loadingtext = "<span>Loading...</span>"
var AjaxRequestObj = "";
//封装 ajax 类
function Ajax(method,url,asynchronous,onsuccessFun,onloadingFun,onerrorFun){
onsuccess = onsuccessFun;
onloading = onloadingFun;
onerror = onerrorFun
this.asynchronous = true;
this.onloading=function(){onloadFun};
this.onerror=function(){onerrorFun};
createxmlhttprequest();
xmlhttp.onreadystatechange = handleStateChange;
xmlhttp.open(method,url,asynchronous);
this.request = function(){xmlhttp.send(null);}
}
function handleStateChange(){
if (xmlhttp.readyState==4){
if(xmlhttp.status==200){
AjaxRequestObj = xmlhttp.responseXML;
eval(onsuccess);
}else{
if(xmlhttp.status==404)
eval(onerror); //页面不存在
}
}else{
if (xmlhttp.readyState==3)
eval(onloading);
}
}
var innerPlace="";
function innerloadingtext(obj){
if(obj.parentNode.getElementsByTagName("a")[0].className=="open"){
try{
ulobj = obj.parentNode.getElementsByTagName("ul")[0];
}catch(e){ulobj = "";}
if(typeof(ulobj)!="object")
obj.innerHTML += loadingtext;
}
}
function switchclass(id,obj){ //改变li的样式,从样式判断是否需要读取数据
if(obj.className=="close"){
obj.className="open";
try{
ulobj = obj.parentNode.getElementsByTagName("ul")[0];
}catch(e){ulobj = "";}
if(typeof(ulobj)=="object"){
if(ulobj.style.display="none"){
ulobj.style.display="block";
}else{
getValue(id,obj.parentNode);
}
}else{
getValue(id,obj.parentNode);
}
}else{
if(obj.className=="open"){obj.className="close";obj.parentNode.getElementsByTagName("ul")[0].style.display="none";}
}
}
function getValue(id,obj){ //取值
var ajaxObj = new Ajax("GET","list.asp?id="+id,true,"getsuccess()","getting()","getfailed()");
ajaxObj.request();
innerPlace = obj;
}
function getsuccess(){ //取值成功后
var addr = AjaxRequestObj.getElementsByTagName("address");
var addrLen = addr.length;
if(addrLen==0){
setTimeout("delloadingtext()",200)
innerPlace.firstChild.className="nonedata";
}else{
var subnode="";
var selfid;
var name;
var url;
for (i=0; i<addrLen; i++){
selfid = addr[i].firstChild.data.split("|")[0];
name = addr[i].firstChild.data.split("|")[1];
url = addr[i].firstChild.data.split("|")[2];
if(url!="")
subnode = subnode + "<li><a href='javascript:void(0)' onclick="switchclass("+ selfid +",this);innerloadingtext(this.parentNode.getElementsByTagName('a')[1])" class='close'> </a><a href='"+ url +"' target='mainFrame' onclick="switchclass("+ selfid +",this.parentNode.getElementsByTagName('a')[0]);innerloadingtext(this)">" + name + "</a></li>";
else
subnode = subnode + "<li><a href='javascript:void(0)' onclick="switchclass("+ selfid +",this);innerloadingtext(this.parentNode.getElementsByTagName('a')[1])" class='close'> </a><a href='javascript:void(0)' onclick="switchclass("+ selfid +",this.parentNode.getElementsByTagName('a')[0]);innerloadingtext(this)">" + name + "</a></li>";
}
subnode = "<ul>" + subnode + "</ul>";
setTimeout("delloadingtext()",200)
innerPlace.innerHTML = innerPlace.innerHTML + subnode;
document.getElementById("stru").value = document.getElementById("tree").innerHTML
}
}
function getting(){ //正在取值时
// innerPlace.innerHTML = "Loading...";
}
function getfailed(){ //取值失败
alert("err")
}
</script>
</head>
<body onload="getValue(0,document.getElementById('tree'))">
<h1 style=" margin:20px">Ajax无限级目录树:</h1>
<div class="tree" id="tree"></div>
<iframe src="" name="mainFrame" id="mainFrame" frameborder="1" style=" border:none; margin:30px; width:250px; height:400px; padding:0"></iframe>
<textarea id="stru"></textarea>
<div style="clear:both; text-align:center">Writen by misshjn (@ <a href="http://www.happyshow.org" target="_blank">http://www.happyshow.org</a>)</div>
</body>
</html>
演示地址:http://www.happyshow.org/sample/20060918/ajax.html
发表评论
-
Class-based Javascript analog clock
2009-12-11 23:51 978var analogClock = function (div ... -
Javascript Array shuffle in-place
2009-12-11 23:46 1061It works with Array types. The ... -
Javascript Loader
2009-12-11 23:43 1097// Core functions for Blackbir ... -
a script that is able to load a remote script located in other server anytime it
2009-12-11 23:20 1068<script type="text/java ... -
右鍵事件控制
2009-04-12 00:47 863詳細見附件 -
Javascript利用闭包循环绑定事件
2008-10-15 12:21 1005<!DOCTYPE html PUBLIC " ... -
javascript获取本机ip地址 mac地址
2008-10-09 12:40 7251<HTML> <HEAD&g ... -
xml+xsl生成html的方法
2008-10-09 12:35 1909今天在论坛上看到一位朋友在利用xml+xsl生成html的时候 ... -
JavaScript渐变效果
2008-09-07 23:59 1752<!DOCTYPE html PUBLIC " ... -
QQ窗口震动效果
2008-09-07 22:19 1283<img id="win" sty ... -
select 按键 提示
2008-08-28 00:06 1528<!DOCTYPE HTML PUBLIC " ... -
firebug-lite源代码
2008-07-26 13:29 2681firebug-lite源代码包含的三个很强的js文件 -
ShowModalDialog函数的功能
2008-07-25 12:27 1116ShowModalDialog函数的功能:打开一个子窗口,并且 ... -
利用Word打印报表
2008-07-17 18:20 1068利用Word打印报表 -
ActionScript3[1].0_Cookbook.rar
2008-07-12 20:34 804ActionScript3[1].0_Cookbook.rar ... -
JS的正则表达式
2008-07-02 14:02 817//校验是否全由数字组成 [code] function is ... -
字符串 每三位 逗号 分隔
2008-07-01 09:51 1886function formatNum(num,digit)// ... -
ajax利用post传递大量数据解决方法
2008-06-26 18:36 3272将url和参数分开解决具体方法如下: var resour ... -
类似于Java日期格式化的JavaScript实现
2008-06-25 13:15 16391/**//** 2@author:Pancras 3 ... -
『工具手册』正则表达式
2008-06-21 09:17 801前言 正则表达式 ...
相关推荐
然后就想办法仿照JQuery zTree写一个性能高的树形目录 经过努力 最终 实现了 树形目录,当然不能和 JQuery zTree 的功能想比 但是最少我认为从性能和实用性上已完全够用了 通过 Ajax 的 JSON 方法 实现 新增 修改 ...
"Ajax+ASP无限级分类树"就是一种利用Ajax技术和ASP脚本语言实现动态加载和展示无限层级分类数据的技术。Ajax(Asynchronous JavaScript and XML)是前端开发中的核心技术,它可以实现在不刷新整个页面的情况下与...
1. **无限级目录树原理** 无限级目录树的实现通常基于递归或者自连接的方式。在这个项目中,数据库表可能设计为自连接模型,每个分类项都有一个父节点ID,通过这个字段可以链接到其父类,从而形成层级关系。通过...
在“Ajax无限级菜单树”中,Ajax负责在用户展开或折叠菜单项时,动态加载或卸载子菜单,实现平滑过渡,提高响应速度。 项目中的`Tree.htm`可能包含HTML结构和JavaScript代码,用于展示菜单树的基本结构和处理用户的...
通过这种方式,我们可以创建一个响应迅速、交互流畅的无限级目录树,而无需每次操作都重新加载整个页面,大大提升了用户体验。同时,这种基于标准Web技术的实现方式也具有良好的跨平台性和可维护性。
Ajax无限级树是一种基于Web的用户界面技术,用于在不刷新整个页面的情况下动态加载和显示层级数据。这种技术的核心是利用Ajax(异步JavaScript和XML)进行后台数据交互,配合前端JavaScript库或框架来实现树形结构的...
5. **JavaScript/jQuery**:为了在前端展示无限级目录树,可以使用JavaScript或jQuery配合HTML和CSS。例如,使用递归函数动态生成HTML结构,或者使用现有的前端组件库(如jQuery UI的TreeView,或者Bootstrap的...
综合来看,"无限级树形目录(.NET版)AjaxTree"是一个结合了.NET后端技术和前端Ajax技术的解决方案,旨在提供高效、可扩展的无限级目录树视图,适用于各种Web应用需求。其1.3版本可能在功能、性能和易用性上进行了优化...
【标题】:“JSP无限级分类目录树_sorttree.rar”是一个关于使用JSP技术实现无限级分类目录树的示例项目。在Web开发中,无限级分类目录树常常用于网站的导航菜单、文件管理系统或者组织结构展示等场景,能够帮助用户...
6. **CSS和JavaScript**:为了提升用户体验,通常会使用CSS来美化目录树的样式,用JavaScript处理点击事件,实现目录树的动态展开和折叠。例如,可以使用jQuery库的`.click()`事件监听和`.toggle()`方法。 7. **...
综上所述,这个压缩包文件【其他类别】JSP无限级分类目录树_sorttree可能包含了一整套关于如何在JSP中实现无限级分类目录树的示例代码,包括了Servlet的后台处理、JSP的前端展示以及可能的AJAX动态加载优化。...
在IT领域,尤其是在Web开发中,构建无限级分类目录树是一项常见的需求,它通常用于网站导航、文件管理系统或者电子商务中的商品分类。JSP(JavaServer Pages)作为一种动态网页技术,结合Java后端处理,可以有效地...
标题中的“纯ajax 无限级 树形 菜单 源码”指的是一个使用纯JavaScript(通过AJAX技术)实现的无限级树形菜单的源代码。这个菜单允许用户在不刷新整个页面的情况下,动态加载和展示层级结构的数据,提供了一种高效的...
本资源提供了一个基于Ajax技术实现的无限级树结构的源码下载,旨在帮助开发者理解和实现类似功能。以下是对这个项目的详细解读: 1. **Ajax**: Ajax(Asynchronous JavaScript and XML)是一种在无需刷新整个页面...
纯ajax sqlserver无限级树形菜单. 内还包括表结构和一些基础数据 补充:第一次发布时,忘了图片打包进来. 以下载的朋友可以在这里下载图片 ...