基于asp+ajax和数据库驱动的二级联动菜单


Posted in PHP onMay 06, 2010

index.asp 页面代码

<!--#include file="conn.asp" --> 
<% 
set cmd = conn.execute("select bigclassid,bigclassname from bigclass") 
tempid=cmd("bigclassid") 
%> 
<select name="menu" onChange="getsubcategory(this.value);"> <% 
if not cmd.eof then 
do while not cmd.eof 
bigclassid= cmd("bigclassid") 
bigclassname = cmd("bigclassname") 
%> 
<option value="<%=bigclassid%>"><%=bigclassname%></option> 
<% 
cmd.movenext 
loop 
end if 
cmd.close 
set cmd = nothing 
%> 
</select> 
<div id="subclass"> 
<select name="submenu"> 
<% 
set cxd = conn.execute("select * from smallclass where bigclassid=" & tempid) 
if not cxd.eof then 
do while not cxd.eof 
smallclassid= cxd("smallclassid") 
smallclassname = cxd("smallclassname")%> 
<option value="<%=smallclassid%>"><%=smallclassname%></option> 
<% 
cxd.movenext 
loop 
cxd.close 
set cxd = nothing 
else 
html = "<select name='smallclassid'><option value='0' selected>暂无小类</option></select>" 
response.write html 
end if 
%> 
</select> 
</div>

ajax.js 代码
// JavaScript Document 
function createxmlhttp() 
{ 
xmlhttpobj = false; 
try{ 
xmlhttpobj = new XMLHttpRequest; 
}catch(e){ 
try{ 
xmlhttpobj=new ActiveXObject("MSXML2.XMLHTTP"); 
}catch(e2){ 
try{ 
xmlhttpobj=new ActiveXObject("Microsoft.XMLHTTP"); 
}catch(e3){ 
xmlhttpobj = false; 
} 
} 
} 
return xmlhttpobj; 
} function getsubcategory(bigclassid){ 
if(bigclassid==0){ 
document.getElementById("subclass").innerHTML="<select name='smallclassid'><option value='0' selected>选择二级分类</option></select>"; 
return; 
}; 
var xmlhttpobj = createxmlhttp(); 
if(xmlhttpobj){//如果创建对象xmlhttpobj成功 
xmlhttpobj.onreadystatechange=handle; 
xmlhttpobj.open('get',"getsubcategory.asp?bigclassid="+bigclassid+"&number="+Math.random(),true);//get方法 加个随机数。 

xmlhttpobj.send(null); 
} 
} 
function handle(){//客户端监控函数 
//if(xmlhttpobj.readystate==4){//服务器处理请求完成 
if(xmlhttpobj.status==200){ 
//alert('ok'); 
var html = xmlhttpobj.responseText;//获得返回值 
document.getElementById("subclass").innerHTML=html; 
}else{ 
document.getElementById("subclass").innerHTML="对不起,您请求的页面有问题..."; 
} 
//} 
//else{ 
//document.getElementById("subclass").innerHTML=xmlhttpobj.readystate;//服务器处理中 
//} 
//} 
}

getsubcategory.asp 代码
<%@language="vbscript" codepage="936"%> 
<!--#include file="conn.asp"--> 
<% 
response.charset="gb2312" 
bigclassid=safe(request.querystring("bigclassid")) 
if bigclassid<>"" then 
set re=new regexp 
re.ignorecase=true 
re.global=false 
re.pattern = "^[0-9]{1,3}$" 
if not re.test(bigclassid) then 
response.write "非法参数" 
response.end 
end if%> <%on error resume next 
set p = conn.execute("select * from smallclass where bigclassid=" & bigclassid) 
if err then 
err.clear 
response.write "查询出错" 
response.end 
end if 
if not p.eof then 
html = "<select name='select2'>"&vbnewline 
do while not p.eof 
html = html&"<option value='"&p("smallclassid")&"'>"&p("smallclassname")&"</option>"&vbnewline 
p.movenext 
loop 
html = html&"</select>" 
else 
html = "<select name='smallclassid'><option value='0' selected>暂无小类</option></select>" 
end if 
p.close 
set p = nothing 
conn.close 
set conn = nothing 
response.write html 
html = "" 
end if 
%>
PHP 相关文章推荐
php set_magic_quotes_runtime() 函数过时解决方法
Jul 08 PHP
用PHP即时捕捉PHP中的错误并发送email通知的实现代码
Jan 19 PHP
深入PHP中的HashTable结构详解
Jun 13 PHP
PHP中如何实现常用邮箱的基本判断
Jan 07 PHP
浅析php单例模式
Nov 25 PHP
php中heredoc与nowdoc介绍
Dec 25 PHP
php实现按天数、星期、月份查询的搜索框
May 02 PHP
php读取torrent种子文件内容的方法(测试可用)
May 03 PHP
CI框架实现cookie登陆的方法详解
May 18 PHP
PHP关键特性之命名空间实例详解
May 06 PHP
ThinkPHP5.0框架使用build 自动生成模块操作示例
Apr 11 PHP
laravel 执行迁移回滚示例
Oct 23 PHP
PHP 类商品秒杀计时实现代码
May 05 #PHP
PHP 面向对象 final类与final方法
May 05 #PHP
PHP 面向对象 PHP5 中的常量
May 05 #PHP
在Windows下编译适用于PHP 5.2.12及5.2.13的eAccelerator.dll(附下载)
May 04 #PHP
一些被忽视的PHP函数(简单整理)
Apr 30 #PHP
php 将字符串按大写字母分隔成字符串数组
Apr 30 #PHP
mayfish 数据入库验证代码
Apr 30 #PHP
You might like
VFP与其他应用程序的集成
2006/10/09 PHP
PHP线程的内存回收问题
2016/07/08 PHP
php实现的网页版剪刀石头布游戏示例
2016/11/25 PHP
php获取excel文件数据
2017/04/21 PHP
gearman中任务的优先级和返回状态实例分析
2020/02/27 PHP
js计算两个时间之间天数差的实例代码
2013/11/19 Javascript
特殊情况下如何获取span里面的值
2014/05/20 Javascript
Javascript遍历table中的元素示例代码
2014/07/08 Javascript
微信小程序图片横向左右滑动案例
2017/05/19 Javascript
JavaScript 获取元素在父节点中的下标(推荐)
2017/06/28 Javascript
微信小程序 rich-text的使用方法
2017/08/04 Javascript
JavaScript控制浏览器全屏显示简单示例
2018/07/05 Javascript
微信网页授权并获取用户信息的方法
2018/07/30 Javascript
Vue+webpack+Element 兼容问题总结(小结)
2018/08/16 Javascript
微信小程序文章详情页面实现代码
2018/09/10 Javascript
用WebStorm进行Angularjs 2开发(环境篇:Windows 10,Angular-cli方式)
2018/12/05 Javascript
详解Vue 全局变量,局部变量
2019/04/17 Javascript
npm qs模块使用详解
2020/02/07 Javascript
实践Python的爬虫框架Scrapy来抓取豆瓣电影TOP250
2016/01/20 Python
Python 实现 贪吃蛇大作战 代码分享
2016/09/07 Python
Tornado协程在python2.7如何返回值(实现方法)
2017/06/22 Python
Python实现图片滑动式验证识别方法
2017/11/09 Python
Python 从列表中取值和取索引的方法
2018/12/25 Python
python 二维数组90度旋转的方法
2019/01/28 Python
关于Tensorflow分布式并行策略
2020/02/03 Python
TensorFlow:将ckpt文件固化成pb文件教程
2020/02/11 Python
Monnier Freres中文官网:法国领先的奢侈品配饰在线零售商
2017/11/01 全球购物
Chicco婴儿用品美国官网:汽车座椅、婴儿推车、高脚椅等
2018/11/05 全球购物
区域销售经理职责
2013/12/22 职场文书
采购部经理岗位职责
2014/02/10 职场文书
文明寄语大全
2014/04/11 职场文书
2015年政府采购工作总结
2015/05/21 职场文书
重温经典:乔布斯在斯坦福大学的毕业演讲(双语)
2019/08/26 职场文书
为什么node.js不适合大型项目
2021/04/28 Javascript
从QQtabBar看css命名规范BEM的详细介绍
2021/08/07 HTML / CSS
python数字图像处理之对比度与亮度调整示例
2022/06/28 Python