zoukankan      html  css  js  c++  java
  • ddd



    <form id="yj-form" method="GET" action="fgyj.do">
      public List<AjxxModel> randomSelect(String ajxhs, int n) {
            String[] ajxhStrings = StringUtil.split(ajxhs, ',');
            int total = ajxhStrings.length;
            List<String> chooseAjxhs = new ArrayList<String>();
            String randomajxhs = "";
            Random rd = new Random();
            int choseNum = 0;
            if (total >= n) {
                while (choseNum < n) {
                    int choseIndex = rd.nextInt(total);
                    String choseAjxh = ajxhStrings[choseIndex];
                    if (!chooseAjxhs.contains(choseAjxh)) {
                        chooseAjxhs.add(choseAjxh); choseNum++;
                    }
                }
                for (String choseAjxh : chooseAjxhs) { randomajxhs += choseAjxh + ","; }
                if (!StringUtil.isEmpty(randomajxhs)) { randomajxhs = randomajxhs.substring(0, randomajxhs.length() - 1); }
            }else { randomajxhs = ajxhs; }
            AjcxtjModel ajcxtjModel = new AjcxtjModel();
            ajcxtjModel.setAjxhs(randomajxhs);
            List<AjxxModel> ajxxModels = ajjbDao.getAjxxByAjcxtj(ajcxtjModel);
            return ajxxModels;
        }
    
    
    
     

      <div class="search_condition">     <label> 时间范围:</label> <input name="search_kssj" type="text" class="datepicker" value="${search_kssj}" /> <label></label> <input name="search_jssj" type="text" class="datepicker" value="${search_jssj}" /> </div> <div class="search_condition"> <label><span style="0.5em; display: inline-block;"></span><span style="0.5em; display: inline-block;"></span>人:</label> <input name="search_dsr" type="text" value="${search_dsr }"/>
      </div>
    <div class="search_condition">
        <label><span style="2em; display: inline-block;"></span>门:</label>
        <select name="search_fgbm">
          <option selected="selected" value="">全部</option>
    <c:forEach items="${bmModels }" var="bmModel">
       <option value="${bmModel.dmbh }" <c:if test="${search_fgbm == bmModel.dmbh }" >selected="selected"</c:if> >${bmModel.dmms }</option>
    </c:forEach>
    </select>
    </div>
    <div class="search_condition">
       <label>约见法官:</label>
          <select name="search_yjfg" >
       <c:if test="${search_i_yjfg != '' }">
              <option value="-1">全部</option>
              <c:forEach items="${yhModels }" var="yhModel">
                <option value="${yhModel.yhbh }" <c:if test="${search_i_yjfg == yhModel.yhbh }" >selected="selected"</c:if> >${yhModel.yhmc }</option>
              </c:forEach>
    </c:if>
          </select>
    </div>
    <div class="search_btn_area">

        <input id="search" class="search_btn" type="submit" value="查 询" />
    <a href="yjxz.do"><input id="add" class="search_btn" value="新 增" /></a>
    </div>
    </form>
  • 相关阅读:
    c盘清理
    Uploading source images to prepare for transformations HTTP Error 400: POST https://res.ionic.io/api/v1/upload
    maven install 与install:install 的区别
    mysql 、pgsql、oracle 常见分页
    Java 动态代理的原理
    浅谈EC和多副本
    工信部ICP备案后,是否还需要公安备案
    RHEL6.5、RHEL7.2忘记ROOT密码恢复小结
    域名恶意解析的原因是什么
    HTTP 请求头中的 X-Forwarded-For
  • 原文地址:https://www.cnblogs.com/zhyxBlog/p/3511703.html
Copyright © 2011-2022 走看看