• jqueryajax


    function clickFindEdit(){
     document.getElementById("questionType2").length=0;//清空
     var parId=$("#questionType1").val();
     $.ajax({
     type: "GET",
     url: "caseInfo!selectDicByParent.action",// 我要调用InfoBizzImpl类中的getBySql2这个方法
     data: "parentIdStr="+parId,
     contentType: "application/json; charset=utf-8",
     dataType: "html",
     success: function(msg) {
         $("#selectSonValue").html(msg);
     },
     error: function(xhr,msg,e) {
      //alert(msg);
     }
     });
    }

    //为题分类 根据父Id查找子的集合
     public void selectDicByParent() throws IOException, ApplicationException {
      String parentIdStr=request.getParameter("parentIdStr");
      String result="";
      HashMap map=new HashMap();
      map.put("parentId", Long.parseLong(parentIdStr));
      List<TblSystemDictionary> list =  this.bService.queryAll("TblSystemDictionary",map);
      StringBuffer sb=new StringBuffer();
      if (null != list && list.size()>0) {
       //组装select   
       sb.append("<select name=\"questionType2\" style=\"size:50\" >");
       for (int i = 0; i < list.size(); i++) {
        TblSystemDictionary sd=(TblSystemDictionary)list.get(i);
        sb.append("<option value=\"");
        sb.append(sd.getId());
        sb.append("\" selected=\"selected\">");
        sb.append(sd.getName());
        sb.append("</option>");   
       }
       sb.append("</select>");
       result=sb.toString();
      }else{
       sb.append("<select name=\"questionType2\" style=\"size:50\" >");
       sb.append("<option value=\"\">");
       sb.append(Constants.NOTICE_NOQUESTION2);
       sb.append("</option>");
       sb.append("</select>");
       result=sb.toString();
      }
      response.setContentType("text/xml; charset=UTF-8");
      response.setHeader("Cache-Control", "no-cache");
      response.getWriter().write(result);
     }

  • 相关阅读:
    通过GetProcAddress函数动态调用dll中地函数,是否必须通过extern C声明导出函数?
    函数指针与typedef
    MSDN DLL 综合
    DLL
    Firefox浏览器兼容Javascript脚本的方法
    C++中extern “C”含义深层探索
    生成索引脚本
    使用Go语句生成数值表
    避免使用count(*)获得表的记录数,解决其延迟问题
    在程序开发中怎样写SQL语句可以提高数据库的性能
  • 原文地址:https://www.cnblogs.com/yangy608/p/1879622.html
Copyright © 2020-2023  润新知