可编辑下拉框

<html>  
<head>  
<meta   name="GENERATOR"   content="Microsoft   FrontPage   5.0">  
<meta   name="ProgId"   content="FrontPage.Editor.Document">  
<meta   http-equiv="Content-Type"   content="text/html;   charset=gb2312">  
<title>可编辑下拉框</title>  
</head>    
<body>  
<table   style="border:2px   outset;background-color:#d2e8FF"   width="250"   height="100"   align="center">    
      <tr>  
          <td   width="60%"   height="30"   align="center">  
   <select   name="fason">  
    <option   value="可编辑下拉框">可编辑下拉框</option>  
    <option   value="作者">作者</option>  
   </select>  
          </td>    
      </tr>  
</table>      
<script   language="javascript">  
 function   combox(obj,select){  
  this.obj=obj  
  this.name=select;  
  this.select=document.getElementsByName(select)[0];  
  /*要转换的下拉框*/  
 }  
 /*初始化对象*/  
 combox.prototype.init=function(){  
  var   inputbox="<input   name='combox_"+this.name+"'   οnchange='"+this.obj+".find()'   "  
  inputbox+="style='position:absolute;width:"+(this.select.offsetWidth-16)+";height:"+this.select.offsetHeight+";left:"+getL(this.select)+";top:"+getT(this.select)+"'>"  
  document.write(inputbox)  
  with(this.select.style){  
  left=getL(this.select)  
  top=getT(this.select)  
  position="absolute"  
  clip="rect(0   "+(this.select.offsetWidth)+"   "+this.select.offsetHeight+"   "+(this.select.offsetWidth-18)+")"  
  /*切割下拉框*/  
  }  
  this.select.οnchange=new   Function(this.obj+".change()")  
  this.change()  
   
 }  
/*初始化结束*/  
   
 对象事件定义///  
 combox.prototype.find=function(){  
 /*当搜索到输入框的值时,下拉框自动定位*/  
  var   inputbox=document.getElementsByName("combox_"+this.name)[0]  
  with(this.select){  
  for(i=0;i<options.length;i++)  
   if(options[i].text.indexOf(inputbox.value)==0){  
    selectedIndex=i  
    this.change();  
    break;  
   }  
  }  
 }  
   
 combox.prototype.change=function(){  
  /*定义下拉框的onchange事件*/  
  var   inputbox=document.getElementsByName("combox_"+this.name)[0]  
  inputbox.value=this.select.options[this.select.selectedIndex].text;  
  with(inputbox){select();focus()};  
 }  
 对象事件结束///  
 /*公用定位函数(获取控件绝对坐标)*/  
 function   getL(e){  
  var   l=e.offsetLeft;  
  while(e=e.offsetParent)l+=e.offsetLeft;  
  return   l  
 }  
 function   getT(e){  
  var   t=e.offsetTop;  
  while(e=e.offsetParent)t+=e.offsetTop;  
  return   t  
 }  
/*结束*/  
</script>  
<script   language="javascript">  
 var   a=new combox("a","fason")  
 a.init()  
</script>  
   
</body>  
   
</html>


实例:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="/WEB-INF/lib/tld/c.tld"%>
<%@ taglib prefix="fmt" uri="/WEB-INF/lib/tld/fmt.tld"%>
<%@ taglib prefix="fn" uri="/WEB-INF/lib/tld/fn.tld"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title>寿险续保明细查询</title>
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="expires" content="0">    
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
 <meta http-equiv="description" content="This is my page">
 <style type="text/css">
#tagContent1 {
 BORDER-RIGHT: #f16202 1px solid; PADDING-RIGHT: 1px; BORDER-TOP: #f16202 1px solid; PADDING-LEFT: 1px; PADDING-BOTTOM: 1px; BORDER-LEFT: #f16202 1px solid; PADDING-TOP: 1px; BORDER-BOTTOM: #f16202 1px solid; BACKGROUND-COLOR: #fff; overflow:hidden;
}
.tagContent1 {
 PADDING-RIGHT: 10px; DISPLAY: none; PADDING-LEFT: 10px; BACKGROUND: url(images/bg.gif) repeat-x; PADDING-BOTTOM: 10px; WIDTH: auto; COLOR: #474747; PADDING-TOP: 10px; HEIGHT: auto; overflow:hidden;
}
#tagContent1 DIV.selectTag {DISPLAY: block}
   </style>
 <link href="./jsp/css/tableF.css" rel="stylesheet" type="text/css" />
 <link href="./jsp/js/jquery/date/jquery.datepick.css" rel="stylesheet" type="text/css" />
 <style type="text/css">
.gray12 {font-size:12px;color:#000000; font-family:Arial, Helvetica, sans-serif;}
.gray12 a:link {color:#777777;text-decoration: none;}
.gray12 a:visited {color:#777777;text-decoration: none;}
.gray12 a:hover {color:#777777;text-decoration: underline;}
.gray12 a:active {color:#777777;text-decoration: none;}

/*翻页*/
.pages { margin-right:20px;}
.pages ul { margin:0px; padding:0px; list-style:none;}
.pages ul li { float:right; margin:0px 5px; display: inline; line-height:25px; height:25px;}
.pageinput { width:35px; float:left; text-align:left;}
.pagego { width:26px; float:left; text-align:center}
.pageinput_short {width:60px;height:24px;font-size:12px;background-image: url(../images/inputdi.jpg);color:#666464;border:solid 1px #ccc; line-height:18px; padding-left:5px; text-align:center;}

.btns2 {
    position: relative;
    font-size: 12px;
    line-height: 20px;
}
</style>
<link href="./jsp/css/index.css" rel="stylesheet" type="text/css" />
  <link href="./jsp/css/main2.css" rel="stylesheet" type="text/css" />
  <link href="./jsp/css/tableF.css" rel="stylesheet" type="text/css" />
 <script type="text/javascript" src="../jsp/js/jquery/jquery.tree.js"></script>
 <script type="text/javascript" src="./jsp/js/jquery/jquery.js"></script>
 <script type="text/javascript" src="./jsp/js/jquery/date/jquery.datepick.pack.js"></script>
 <script type="text/javascript" src="./jsp/js/jquery/date/jquery.datepick-zh-CN.js"></script>
 <script type="text/javascript" src="./jsp/js/jquery/My97DatePicker/WdatePicker.js"></script>
 <script type="text/javascript" src="./jsp/js/policyManage/lpolicy.js"></script>
    <script type="text/javascript" src="./jsp/js/keyCommon.js"></script>
    <script type="text/javascript">
    var orgL = '<c:out value="${orgLevel}"/>';
     var curPageNo = "<c:if test="${empty(paper.currentpage)}">1</c:if><c:if test="${!empty(paper.currentpage)}"><c:out value='${paper.currentpage}'/></c:if>";
 var pageCount = "<c:if test="${empty(paper.allSize)}">1</c:if><c:if test="${!empty(paper.allSize)}"><c:out value='${paper.allSize}'/></c:if>";
   
   window.onload = function initValues(){
     
      selqidth_L(95);
     
     }
   
 
function selqidth_L(opl){
    var OptionLength=0;
    var op = opl;
   
   //寿险
   
    var obj=document.getElementById("townOrgCod_L");
      for(var i=0;i<obj.options.length;i++) {
         if(obj.options[i].text.length *16>op) {
           op=obj.options[i].text.length*16;
           OptionLength = op;
           }
       }
       opl=240+"px";
   if(OptionLength >opl){
     document.getElementById("townOrgCod_L").style.width=opl;
   }else{
     document.getElementById("townOrgCod_L").style.width=opl;
   }
   
    OptionLength=0;
    op = opl;
    var obj=document.getElementById("cityOrgCod_L");
      for(var i=0;i<obj.options.length;i++) {
         if(obj.options[i].text.length *16>op) {
           op=obj.options[i].text.length*16;
           OptionLength = op;
           }
       }
       opl=240+"px";
   if(OptionLength >opl){
     document.getElementById("cityOrgCod_L").style.width=opl;
   }else{
     document.getElementById("cityOrgCod_L").style.width=opl;
   }
   
    OptionLength=0;
    op = opl;
   obj=document.getElementById("crsGrpcod_L");
      for(var i=0;i<obj.options.length;i++) {
         if(obj.options[i].text.length * 16>op) {
           op=obj.options[i].text.length* 16;
           OptionLength = op;
           }
       }
       opl=240+"px";
   if(OptionLength >opl){
     document.getElementById("crsGrpcod_L").style.width=opl;
   }else{
     document.getElementById("crsGrpcod_L").style.width=opl;
   }
   
   
 }
     
   function downLPolicyManage(){
        var app_party_name= document.getElementById("app_party_name").value;
  var ind_party_name= document.getElementById("ind_party_name").value;
  var yearnum= document.getElementById("yearnum").value;
  var l_classcode= document.getElementById("l_classcode").value;
  var l_classname= document.getElementById("l_classname").value;
  var inception_date= document.getElementById("inception_date").value;
  var planned_end_date= document.getElementById("planned_end_date").value;
  var l_emp_no= document.getElementById("l_emp_no").value;
  var l_emp_name= document.getElementById("l_emp_name").value;
  var crsGrpcod_L= document.getElementById("crsGrpcod_L").value;
  var cityOrgCod_L= document.getElementById("cityOrgCod_L").value;
  var townOrgCod_L= document.getElementById("townOrgCod_L").value;
 
       var turl = "lpolicyAction.do?action=downLPolicyManage";
     turl = turl + "&app_party_name=" + app_party_name;
  turl = turl + "&ind_party_name=" + ind_party_name;
  turl = turl + "&yearnum=" + yearnum;
  turl = turl + "&l_classcode=" + l_classcode;
  turl = turl + "&l_classname=" + l_classname ;
  turl = turl + "&inception_date=" + inception_date;
  turl = turl + "&planned_end_date=" + planned_end_date;
  turl = turl + "&l_emp_no=" + l_emp_no;
  turl = turl + "&l_emp_name=" + l_emp_name ;
  turl = turl + "&crsGrpcod_L=" + crsGrpcod_L;
  turl = turl + "&cityOrgCod_L=" + cityOrgCod_L;
  turl = turl + "&townOrgCod_L=" + townOrgCod_L ;
        turl = turl + "&pageCount=" + pageCount;
       
  turl = encodeURI(turl);
  window.location.href = turl;
 
  }
 
 function checkInput(){
 var yearnum= document.getElementById("yearnum").value;
 var regex = /[0-9]/ ;
 var result = regex.test(yearnum) ;
 if(result){
 return true;
 }else{
   alert("保单缴费年度只能输入数字");
   return false;
   }
 
 /*
 var yearnum_clone=document.getElementById("yearnum_clone").value;
 var yearnum= document.getElementById("yearnum").value;
 if(yearnum_clone=='2'||yearnum_clone=='3'||yearnum_clone=='4'||yearnum_clone=='5'||yearnum_clone=='6'||yearnum_clone=='7'||yearnum_clone=='8'||yearnum_clone=='9'||yearnum_clone=='10'){
 yearnum=yearnum_clone;
 alert("选择值:"+yearnum);
 return true;
 }else{
 alert("手动输入值:"+yearnum);
 return true;
 }
 */
}  
   
    /*
    实现可编辑下拉框
    */
    function   combox(obj,select){  
   
  this.obj=obj  
  this.name=select;  
  this.select=document.getElementsByName(select)[0];  
  /*要转换的下拉框*/  
 }  
 /*初始化对象*/  
 combox.prototype.init=function(){  
  var   inputbox="<input id='combox_"+this.name+"'   name='combox_"+this.name+"'   οnchange='"+this.obj+".find()'   "  
  inputbox+="style='position:absolute;width:"+(this.select.offsetWidth-16)+";height:"+this.select.offsetHeight+";left:"+getL(this.select)+";top:"+getT(this.select)+"'>"  
  document.write(inputbox)  
  with(this.select.style){  
  left=getL(this.select)  
  top=getT(this.select)  
  position="absolute"  
  clip="rect(0   "+(this.select.offsetWidth)+"   "+this.select.offsetHeight+"   "+(this.select.offsetWidth-18)+")"  
  /*切割下拉框*/  
  }  
  this.select.οnchange=new   Function(this.obj+".change()")  
  this.change()  
   
 }  
/*初始化结束*/  
   
 对象事件定义///  
 combox.prototype.find=function(){  
 /*当搜索到输入框的值时,下拉框自动定位*/  
  var   inputbox=document.getElementsByName("combox_"+this.name)[0];
  /*当 搜索到输入框的值时,向隐藏域赋值 */
  document.getElementById("yearnum").value=inputbox.value;
  with(this.select){  
  for(i=0;i<options.length;i++)  
   if(options[i].text.indexOf(inputbox.value)==0){  
    selectedIndex=i  
    this.change();  
    break;  
   }  
  }  
 }  
   
 combox.prototype.change=function(){  
  /*定义下拉框的onchange事件*/  
  var   inputbox=document.getElementsByName("combox_"+this.name)[0]  
  inputbox.value=this.select.options[this.select.selectedIndex].text;
/*当选择下拉框选项的时候,向隐藏域赋值*/
  document.getElementById("yearnum").value=this.select.options[this.select.selectedIndex].value;
  //alert("测试文本:"+inputbox.value+",测试值"+this.select.options[this.select.selectedIndex].value);
  with(inputbox){select();focus()};  
 }  
 对象事件结束///  
 /*公用定位函数(获取控件绝对坐标)*/  
 function   getL(e){  
  var   l=e.offsetLeft;  
  while(e=e.offsetParent)l+=e.offsetLeft;  
  return   l  
 }  
 function   getT(e){  
  var   t=e.offsetTop;  
  while(e=e.offsetParent)t+=e.offsetTop;  
  return   t  
 }  
/*结束*/  
     
    </script>
   
  </head>
 
  <body onKeyDown="checkKey(event);">
  <table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td>
 <table width="100%" style="margin:10px 0;" border="0" cellspacing="0" cellpadding="0">
             <tr>
               <td width="45" align="center"><img src="./jsp/images/sj.gif" width="12" height="17" /></td>
               <td align="left" class="gray14B">统计分析&gt;
               续保管理&gt;
               寿险续保明细查询
         </td>
             </tr>
          </table></td>
          </tr>
          <tr>
          <td height="4" background="./jsp/images/dians.gif"/></td></tr>
          <tr><td>
  <div class="ssdilong">
  <form name="form1" action="lpolicyAction.do?action=toLPolicyView" method="post" οnsubmit="return checkInput();">
  <!--start2-->
      <table id="ta" style="font-size:12px;overflow:hidden;color:#6699cc;width: 1200px;"  >
            <tr>
           
        <td>
              分公司:</td>
              <td>
                 <select style="width: 240px" name="crsGrpcod_L" id="crsGrpcod_L" style="width:95px" οnchange="showProCityList_L();">
                    <c:if test="${fn:length(provList_L)>1}"> <option value="all" <c:if test="${crsGrpcod_L =='all'}">selected</c:if>>全部</option></c:if>
                   <c:if test="${!empty provList_L}">
                    <c:forEach items="${provList_L}" var="prov">
                       <option value="${prov.current_lvl_org_code }" <c:if test="${prov.current_lvl_org_code==crsGrpcod_L }"><c:set var="flag" value="true"/>selected</c:if>>${prov.current_lvl_org_name }</option>
                    </c:forEach>
                   </c:if>
                 </select>
             </td>
             <td>
                  中心支公司:</td>
                  <td>
                 <select style="width: 240px" name="cityOrgCod_L" id="cityOrgCod_L" style="width:95px" οnchange="showProTownList_L();">
                          <c:if test="${fn:length(cityList_L)>1}"> <option value="all" <c:if test="${cityOrgCod_L =='all'}">selected</c:if>>全部</option></c:if>
                        <c:if test="${! empty cityList_L}">
                        <c:forEach items="${cityList_L}" var="city">
                          <option value="${city.current_lvl_org_code }" <c:if test="${city.current_lvl_org_code==cityOrgCod_L }"><c:set var="flagc" value="true"/>selected</c:if> >${city.current_lvl_org_name }</option>
                        </c:forEach>
                        </c:if>
                 </select>
                 </td>
                 <td>
                  支公司:</td>
                  <td>
                 <select style="width: 240px" name="townOrgCod_L" id="townOrgCod_L" style="width:95px" >
                          <c:if test="${fn:length(townList_L)>1}"> <option value="all" <c:if test="${townOrgCod_L =='all'}">selected</c:if>>全部</option></c:if>
                        <c:if test="${! empty townList_L}">
                        <c:forEach items="${townList_L}" var="town">
                          <option value="${town.current_lvl_org_code }" <c:if test="${town.current_lvl_org_code==townOrgCod_L }"><c:set var="flagc" value="true"/>selected</c:if> >${town.current_lvl_org_name }</option>
                        </c:forEach>
                        </c:if>
                 </select>
                 </td>
       </tr>
       <tr>
       
       <td>保单号:</td>
        <td><input style="width: 240px" type="text" id="l_policyno" name="l_policyno" size="15" value="${l_policyno }"/></td>
       <td>业务员姓名:</td>
        <td><input style="width: 240px" type="text" id="l_emp_name" name="l_emp_name" size="15" value="${l_emp_name }" /></td>
       <td>业务员工号:</td>
        <td><input style="width: 240px" type="text" id="l_emp_no" name="l_emp_no" size="15" value="${l_emp_no }"/></td>
            </tr>
          <tr>
       
       <td>险种名称:</td>
        <td><input style="width: 240px" type="text" id="l_classname" name="l_classname" size="15" value="${l_classname }"/></td>
       <td>险种代码:</td>
        <td><input style="width: 240px" type="text" id="l_classcode" name="l_emp_name" size="15" value="${l_classcode }" /></td>
       <td>保单缴费年度:</td>
       <td>  
       <select  style="width: 240px" name="yearnum_clone"  id="yearnum_clone">  
                           <c:if test="${empty yearnum||yearnum=='1'||yearnum=='2'||yearnum=='3'||yearnum=='4'||yearnum=='5'||yearnum=='6'||yearnum=='7'||yearnum=='8'||yearnum=='9'}">
            <option selected="selected" value="" >直接输入数字</option>
            </c:if>
            <c:if test="${yearnum!='1'&&yearnum!='2'&&yearnum!='3'&&yearnum!='4'&&yearnum!='5'&&yearnum!='6'&&yearnum!='7'&&yearnum!='8'&&yearnum!='9'&&!empty yearnum }">
            <option selected="selected">${yearnum}</option>
            </c:if>
           
                       <option  <c:if test="${yearnum=='1'}">selected</c:if> value="1">第二年</option>
                          <option <c:if test="${yearnum=='2' }">selected</c:if> value="2">第三年</option>
                          <option <c:if test="${yearnum=='3' }">selected</c:if> value="3">第四年</option>
                          <option <c:if test="${yearnum=='4' }">selected</c:if> value="4">第五年</option>
                          <option <c:if test="${yearnum=='5' }">selected</c:if> value="5">第六年</option>
                          <option <c:if test="${yearnum=='6' }">selected</c:if> value="6">第七年</option>
                          <option <c:if test="${yearnum=='7' }">selected</c:if> value="7">第八年</option>
                          <option <c:if test="${yearnum=='8' }">selected</c:if> value="8">第九年</option>
                          <option <c:if test="${yearnum=='9' }">selected</c:if> value="9">第十年</option>
                         
      </select>  
   
          </td>
       
       
          </tr>
           
       <tr>
       
             <td>被保险人姓名:</td>
        <td><input style="width: 240px" type="text" id="ind_party_name" name="ind_party_name" size="15" value="${ind_party_name}"/></td>
        <td>投保人姓名:</td>
        <td><input style="width: 240px" type="text" id="app_party_name" name="app_party_name" size="15" value="${app_party_name }" /></td>
        <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            </td>
            <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            </td>
                 
            </tr>
           
       
       <tr>
       
            <td  align="left" >到期日期(起)</td>
                 <td> <input style="width: 240px" size=15  type="text" id="inception_date" name="inception_date" value="${inception_date }" />
            </td>
            <td  align="left">(止)</td>
               <td>  <input style="width: 240px" size=15 type="text" id="planned_end_date" name="end_date"  value="${planned_end_date }"/>
            </td>
            <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            </td>
            <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            </td>
           
           </tr>
           
            <tr>
           

            <td>
            <input style="width: 240px" type="hidden" id="yearnum" name="yearnum" size="15" value=""/>
            <input class="button_01" type="submit" id="btn" name="btn" value="查询" /></td>
            <td><input class="button_01"  name="export" type="button" value="导出excel" οnclick="return downLPolicyManage();"/></td>
            </tr>
           
          </table>
          <!--start2-->
    </form></div></td></tr>
    <tr><td>
   
        <div class="ssdilong" style="padding-top:10px">
    <table  style="width:95%;" align="center" border="0" cellspacing="1" cellpadding="0" bgcolor="#99ccff" style="margin-top:10px; margin-top:10px\9;">
        <!--start-->
         
   <tbody>
        <tr class="list_02tr" >
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >分公司</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >中心支公司</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >四级机构</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >业务员工号</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >业务员姓名</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >保单号</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >险种号</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >险种名称</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >主附险</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >缴费年限</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >生效日期</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >寿险保费</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >标准保费</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >被保险人</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >投保人</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >投保人联系电话</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >投保人地址</font></td>
            <td   ALIGN =center nowrap><font STYLE='' SIZE='2' >投保人邮编</font></td>
           
        </tr>
           

           <c:forEach items="${paper.resultList}" var="lpolicyList">
          <tr>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_branch_name }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_department_group_name}</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_department_name }</font></td>
             <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_empno }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_emp_name }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_policyno }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_classcode }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_classname }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.rider_contract }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.yearnum }</font></td>
             <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.nb_acceptance_date }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.l_premium}</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.standard_premium}</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.ind_party_name }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.app_party_name }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.app_telephone }</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.app_address}</font></td>
            <td bgcolor="#FFFFFF" ALIGN ="left" nowrap><font STYLE='' SIZE='2' >${lpolicyList.app_postal_code}</font></td>
        </tr>
       </c:forEach>
         
       </tbody>
       </table>
        </div>
      </td></tr></table>
      <div class="gray12 pages btns2">
         <ul>
             <li>第<c:out value="${paper.currentpage}"/>页/共<c:out value="${paper.allSize}"/>页</li>
                     <li>
                       <div class="pageinput"><input name="currentPage" id="currentPage" type="text" class=" pageinput_short" οnkeypress="event.returnValue=IsDigit();" value="${currentpage}"/></div>
                         <div class="pagego"><img src="./jsp/images/go.gif" onClick="t_Page()"/></div>
                     </li>
                     <c:if test="${paper.currentpage < paper.allSize}">
                      <li><a href="javascript:void(0)" onClick="mPageNo()">末页</a></li>
                      <li><a href="javascript:void(0)" onClick="dowPageNo()">下一页</a></li>
                     </c:if>
                     <c:if test="${paper.currentpage >= paper.allSize}">
                      <li style="color:#777777">末页</li>
                      <li style="color:#777777">下一页</li>
                     </c:if>
                     <c:if test="${paper.currentpage > 1 }">
                      <li><a href="javascript:void(0)" onClick="upPageNo()">上一页</a></li>
                      <li><a href="javascript:void(0)" onClick="onePageNo()">首页</a></li>
                     </c:if>
                     <c:if test="${paper.currentpage <= 1 }">
                      <li style="color:#777777">上一页</li>
                      <li style="color:#777777">首页</li>
                     </c:if>
                </ul>
           </div>
       <script type="text/javascript">
       var   a=new combox("a","yearnum_clone")  
    a.init()
 
  $('#inception_date,#planned_end_date').datepick({beforeShow: customRange, dateFormat: 'yy-mm-dd', showMonthAfterYear: true});
 
  function customRange(input) {
   return {minDate:'2010-01-01',maxDate:'2024-12-31'};
   //return {minDate: (input.id == "end_date" ? $("#start_date").datepick("getDate") : null),  maxDate: (input.id == "start_date" ? $("#end_date").datepick("getDate") : null)};  
  }
 
 

 </script>
  </body>

</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值