获得Select的option当前点击的内容且提交到服务器?

jsp部分内容:

<!--所在城市-->
        		<!-- 把select的name属性去掉,加两个input 加上name属性
        			用jquery获取当前点击的option值
点击提交时会将有name属性值的input提交上去
在jquery里面  为input name="shen" 设置value值,该value值就是当前点击的省,服务器可以拿到这些value值

        		-->
        		<input type="hidden" name="shen"/>
        		<input type="hidden" name="shi"/>
<div class="address">
        <label id="zaicity">所在城市</label>
        	<div id="shenDiv">
        		<select id="province" class="form-control" aria-required="true">
        		   <option value="${auctionPro.shen }">省/直辖市</option>
        		   <option >其他</option>
        		</select>
        	</div>
        	<div id="shiDiv">
        			<select id="city" class="form-control" aria-required="true">
        				<option value="${auctionPro.shi }">市/县/区</option>            			     </select>
         </div>
</div>

jquery内容

$("#province").change(function(){
            
        
                index=$(this).val()-1;  //获取当前省的下标
                shen = pro[index];
                
                /*  为input name="shen" 设置value值*/
                $("input[name=shen]").val(shen);
                /* 选了省不一定选了市,所以市的value要清空 */
                $("input[name=shi]").val("");
            				    
                $("#city").prop("length",1);  //清空原有的数据
                for(var i=0;i<city[index].length;i++){//重新为市赋值
                
                    $("#city").append($("<option>").val(i+1).html(city[index][i]));
                    
                 
                }
            });
//为市下拉列表绑定change事件
            $("#city").change(function(){
                var cindex=$(this).val()-1;  //获取当前省的下标
               shi = city[index][cindex];
               
                /*  为input name="shi" 设置value值*/
               $("input[name=shi]").val(shi);
               
                                     
            });   
1.补充内容(Form表单元素有如下12个)
文本类:
文本框    <input type = "text" />
密码框    <input type = "password" />
隐藏域    <input type = "hidden" />
文本域    <textarea></textarea>
 
按钮类:
普通按钮  <input type = "button" value  = "text" />
提交按钮  <input type = "submit" value = "提交" />
重置按钮  <input type = "reset" value = "重置" />
图片按钮  <input type = "image" />
 
选择类:
<input type = "radio" value = "1" id = "ra1">
<label for = "ra1">男</label> 
<input type = "checkbox" value = "" id = ""><label  for = ""></label>
<select>
      <option vale = "1"></option>
</select>
<input type = "file" />

在这里插入图片描述当元素的值发生改变时,会发生 change 事件。
该事件仅适用于文本域(text field),以及 textarea 和 select 元素。当用于 select 元素时,change 事件会在选择某个选项时发生。当用于 text field 或 text area 时,该事件会在元素失去焦点时发生。
推荐网站:http://jquery.cuishifeng.cn/change.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值