标签:pre contact nbsp trade fun ade 文章 cat 指定
1、获取值
var provinceSearch = $("#loc_province_search").find("option:selected").attr("lang");//获取下拉列表选中值 var citySearch = $("#loc_city_search").find("option:selected").attr("lang");//获取下拉列表选中值 var townSearch = $("#loc_town_search").find("option:selected").attr("lang");//获取下拉列表选中值 var linkMan = $(‘.customer_input_contact‘).val();//获取输入框内的值 var customerLevel = $(".txt_classification").attr("lang");//获取下拉列表的lang属性值 var customerTrade = $(".txt_industry").attr("lang");//获取下拉列表的lang属性值 var customerClass = $(".txt_segmentation").attr("lang");//获取下拉列表的lang属性值 var busi_statusType = $(".customer_busi_status2").attr("lang");//获取下拉列表的lang属性值
2、详解
<select id="test"> <option value="1">选项一<option> <option value="2">选项一<option> ... <option value="n">选项N<option> </select>
//获取第一个option的值 $(‘#test option:first‘).val(); //最后一个option的值 $(‘#test option:last‘).val(); //获取第二个option的值 $(‘#test option:eq(1)‘).val(); //获取选中的值 $(‘#test‘).val(); $(‘#test option:selected‘).val(); //设置值为2的option为选中状态 $(‘#test‘).attr(‘value‘,‘2‘); //设置最后一个option为选中 $(‘#test option:last‘).attr(‘selected‘,‘selected‘); $("#test").attr(‘value‘ , $(‘#test option:last‘).val()); $("#test").attr(‘value‘ , $(‘#test option‘).eq($(‘#test option‘).length - 1).val()); //获取select的长度 $(‘#test option‘).length; //添加一个option $("#test").append("<option value=‘n+1‘>第N+1项</option>"); $("<option value=‘n+1‘>第N+1项</option>").appendTo("#test"); //添除选中项 $(‘#test option:selected‘).remove(); //删除项选中(这里删除第一项) $(‘#test option:first‘).remove();、 //指定值被删除 $(‘#test option‘).each(function(){ if( $(this).val() == ‘5‘){ $(this).remove(); } }); $(‘#test option[value=5]‘).remove(); //获取第一个Group的标签 $(‘#test optgroup:eq(0)‘).attr(‘label‘); //获取第二group下面第一个option的值 $(‘#test optgroup:eq(1) : option:eq(0)‘).val();
参考:
http://blog.csdn.net/wojiaohuangyu/article/details/53608648(以上内容部分转自此篇文章)
https://zhidao.baidu.com/question/754549135121148324.html(以上内容大部分转自此篇文章)
标签:pre contact nbsp trade fun ade 文章 cat 指定
原文地址:http://www.cnblogs.com/EasonJim/p/7514355.html