| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 665 人关注过本帖
标题:三级下拉框 选中怎么改不刷新页面?
只看楼主 加入收藏
lxb0592
Rank: 1
等 级:新手上路
帖 子:108
专家分:0
注 册:2012-5-28
结帖率:86.67%
收藏
已结贴  问题点数:20 回复次数:5 
三级下拉框 选中怎么改不刷新页面?
如图!选第一个框,第二框的相对应数据会出来,但同时整个页面会刷新,如何改成三级联动刷新数据,而不刷新页面???

图片附件: 游客没有浏览图片的权限,请 登录注册


代码:
<select name="type" onChange="form1.submit()">
          <option value="0"<%if nowtype="0" then%> selected="selected"<%end if%>>THDS</option>
        <option value="1"<%if nowtype="1" then%> selected="selected"<%end if%>>TFDS</option>
        <option value="2"<%if nowtype="2" then%> selected="selected"<%end if%>>TPDS</option>
        <option value="3"<%if nowtype="3" then%> selected="selected"<%end if%>>TADS</option>
        <option value="4"<%if nowtype="4" then%> selected="selected"<%end if%>>AEI</option>
        <option value="5"<%if nowtype="5" then%> selected="selected"<%end if%>>HMIS</option>
        <option value="6"<%if nowtype="6" then%> selected="selected"<%end if%>>电动脱轨器</option>
        <option value="7"<%if nowtype="7" then%> selected="selected"<%end if%>>手持机</option>
        <option value="8"<%if nowtype="8" then%> selected="selected"<%end if%>>智能风表</option>
        <option value="9"<%if nowtype="9" then%> selected="selected"<%end if%>>办公网络</option>
        </select></td>
        </tr>   
      </form>
      <form name="form2">
      <input type="hidden" name="type" value="<%=nowtype%>">
      <tr>
        <td align="right" height="30">故障所属大类:</td>
        <td class="category">
    <%
    sql="select * from money_bigclass where type="&nowtype&" order by id"
    set rs_bigclass=conn.execute(sql)
    if rs_bigclass.eof then
    %>
    <script language="javascript">
      alert("请先添加帐务大类!")
      window.location.href="../money/bigclass_add.asp"
    </script>
    <%
      response.end
    end if
    nowbigclass=request("bigclass")
    if nowbigclass="" then
      nowbigclass=rs_bigclass("id")
    end if
    %>
      <select name="bigclass" onChange="form2.submit()">
        <%
    do while rs_bigclass.eof=false
    %>
        <option value="<%=rs_bigclass("id")%>"<%if trim(cstr(rs_bigclass("id")))=nowbigclass then%> selected="selected"<%end if%>><%=rs_bigclass("bigclass")%></option>
        <%
      rs_bigclass.movenext
    loop
    %>
      </select>          </td>
        </tr>   
      </form>
      <form name="form3">
      <input type="hidden" name="bigclass" value="<%=nowbigclass%>">
      <input type="hidden" name="type" value="<%=nowtype%>">
      <tr>
        <td align="right" height="30">故障所属小类:</td>
        <td class="category">
    <%
    sql="select * from money_smallclass where id_bigclass="&nowbigclass&" order by id"
    set rs_smallclass=conn.execute(sql)
    %>
      <select name="smallclass">
        <option value="0"></option>
        <%
    do while rs_smallclass.eof=false
    %>
        <option value="<%=rs_smallclass("id")%>"<%if trim(cstr(rs_smallclass("id")))=nowsmallclass then%> selected="selected"<%end if%>><%=rs_smallclass("smallclass")%></option>
        <%
      rs_smallclass.movenext
    loop
    %>
      </select>          </td>
搜索更多相关主题的帖子: selected 数据 option 如何 
2012-07-22 08:49
netlin
Rank: 13Rank: 13Rank: 13Rank: 13
等 级:贵宾
威 望:24
帖 子:544
专家分:4308
注 册:2012-4-9
收藏
得分:10 
使用ajax异步方式读取数据
目前这种方式很流行了!

做自己喜欢的事!
2012-07-22 10:05
lxb0592
Rank: 1
等 级:新手上路
帖 子:108
专家分:0
注 册:2012-5-28
收藏
得分:0 
这么多高手说到! ajax技术,可是我不懂啊,看样子要学习学习这个技术了
2012-07-22 20:49
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
收藏
得分:10 
如果说ajax无刷新联动看我以前的精华帖子
https://bbs.bccn.net/viewthread.php?tid=129187&extra=page%3D1%26amp%3Bfilter%3Ddigest
2012-07-23 10:04
lxb0592
Rank: 1
等 级:新手上路
帖 子:108
专家分:0
注 册:2012-5-28
收藏
得分:0 
谢谢版主! 我得认真学习下?不知道您看我这个代码能改成成功不?
2012-07-23 19:06
lxb0592
Rank: 1
等 级:新手上路
帖 子:108
专家分:0
注 册:2012-5-28
收藏
得分:0 
回复 4楼 yms123
版主!如何把您这个技术用到我这里啊》?
2012-07-24 14:47
快速回复:三级下拉框 选中怎么改不刷新页面?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021659 second(s), 11 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved