为了账号安全,请及时绑定邮箱和手机立即绑定

html 关于select 标签的两个问题

html 关于select 标签的两个问题

南星2017 2016-11-21 15:58:14
1.两个select 标签 如何选中一个后 禁用第2个select标签且清空选中的值?2.后台如何获取 select 的val 和text?   部分代码:1.        </tr>                    <tr>                    <td><select  onchange="mChange(this.options[this.options.selectedIndex].value)" style="width: 220px" name="IDENTITY_TYPE" id="IDENTITY_TYPE" data-placeholder="请选择身份类型"  class="chzn-select" style=" width: 120px; height:40px;">                    <c:if test="${not empty pd.IDENTITY_TYPE_CODE }"><option>${pd.IDENTITY}(${pd.IDENTITY_TYPE_CODE})</option></c:if>                    <option value=""></option>                    <c:forEach items="${uIdenList}" var="uIdenList"><option value="${uIdenList.IDEN_TYPE }">${uIdenList.IDENTITY})</option></c:forEach>                    </select></td>                    </tr>                            <tr>                    <td><select style="width: 220px" name="JYCD_CODE" id="JYCD_CODE" data-placeholder="请选择教育程度"  class="chzn-select" style=" width: 120px; height:40px;">                    <c:if test="${not empty pd.JYCD_CODE }"><option>${pd.JYCD}(${pd.JYCD_CODE})</option></c:if>                    <option value=""></option>                    <c:forEach items="${uJycdList}" var="uJycdList"><option>${uJycdList.JYCD}(${uJycdList.CODE})</option></c:forEach>                    </select></td>                    </tr>                                function  mChange(idenType){    //选择后执行这里的语句    var options=$("#IDENTITY_TYPE option:selected");  //获取选中的项        if(options.val()==1){          //1 学生            $("#JYCD_CODE ").prop("disabled", true);        }        if(options.val()==2){            //2教职工            $("#JYCD_CODE ").prop("disabled", false);        }        if(options.val()==3){            //3 临时人员    }    };            2.  后台java代码:        PageData pd = new PageData();        pd = this.getPageData();        String idenCode = pd.getString("IDENTITY_TYPE");                idenCode的值有时候是val有时候是text?        我想在后台取text的值 
查看完整描述

目前暂无任何回答

  • 0 回答
  • 0 关注
  • 1477 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信