zoukankan      html  css  js  c++  java
  • 如何根据Jquery实现两级联动

    <script language="javascript" type="text/javascript" >
    $(function (){
          $.ajax({
                url:<select:link page="/tobaccoinfo.do?method=getBrandList" />,
                type: "get" ,
                dataType: "json" ,
                success: function (result){
                       var str="<option value=''>全部</option>" ;
                       for (var i=0;i<result.length;i++){
                            str+= "<option value="+result[i].id+">"+result[i].name+ "</option>" ;
                      }
                      $( "#brandid" ).html(str);
                }
          });
          $( "#brandid" ).change( function(){
                 var brandid=$("#brandid" ).val();
                $.ajax({
                      url:<select:link page="/tobaccoinfo.do?method=getTobaccoName" />,
                      type: 'get' ,
                      data:{
                             'brandid' :brandid
                      },
                      dataType: 'json' ,
                      success: function (result){
                             var str="<option value=''>全部</option>" ;
                             for (var i=0;i<result.length;i++){
                                  str+= "<option value="+result[i].id_+ ">"+result[i].name_+ "</option>" ;
                            }
                            $( "#tobaccoId" ).empty().html(str);
                      }
                });
          });
    });
    </script>

    <body>卷烟品牌:<select:select property="brandid" addspacerow="false" style="100px" ></select:select>
    卷烟名称:<select:select property="tobaccoId" addspacerow="false" style="120px" ></select:select></body>

  • 相关阅读:
    java 的 线程池应用和实践
    拦截信息短信息并转发到指定手机
    分享 UC优视 的android程序员面试题
    解释通讯协议中的xml
    设计模式工厂模式
    MongoDB基础教程系列第一篇 进入MongoDB世界
    Docx组件读写Word文档介绍
    [转]Oracle数据库逻辑增量备份之exp/imp
    JSON文件读取
    JAVA综合--如何掌握JDK1.5枚举类型[转]
  • 原文地址:https://www.cnblogs.com/hc1020/p/5067220.html
Copyright © 2011-2022 走看看