JQuery对select option的操作

Html 下拉框结构:
1 <select id="selectID" >
2     <option value="1">1</option>
3     <option value="2">2</option>
4     <option value="3">3</option>
5     <option value="4">4</option>
6     <option value="5">5</option>
7     <option value="6">6</option>
8 </select>

对下拉框的基本操作:
<script language="javascript">        $(document).ready(function() {        //绑定下拉框change事件,当下来框改变时调用 SelectChange()方法        $("#selectID").change(function() { SelectChange(); });         })        function SelectChange() {        //获取下拉框选中项的text属性值        var selectText = $("#selectID").find("option:selected").text();        alert(selectText);        //获取下拉框选中项的value属性值        var selectValue = $("#selectID").val();        alert(selectValue);        //获取下拉框选中项的index属性值        var selectIndex = $("#selectID").get(0).selectedIndex;        alert(selectIndex);        ////获取下拉框最大的index属性值        var selectMaxIndex = $("#selectID option:last").attr("index");        alert(selectMaxIndex);    }

    function aa() {        //设置下拉框index属性为5的选项 选中        $("#selectID").get(0).selectedIndex = 5;      }    function bb() {        //设置下拉框value属性为4的选项 选中        $("#selectID").val(4);    }    function cc() {        //设置下拉框text属性为5的选项 选中         $("#selectID option[text=5]").attr("selected", "selected");              $("#selectID option:contians(‘5‘)").attr("selected", true);
    }    function dd() {        //在下拉框最后添加一个选项        $("#selectID").append("<option value=‘7‘>7</option>");    }    function ee() {        //在下拉框最前添加一个选项        $("#selectID").prepend("<option value=‘0‘>0</option>")    }    function ff() {        //移除下拉框最后一个选项        $("#selectID option:last").remove();    }

    function gg() {        //移除下拉框 index属性为1的选项        $("#selectID option[index=1]").remove();    }

    function hh() {        //移除下拉框 value属性为4的选项        $("#selectID option[value=4]").remove();    }    function ii() {        //禁用下拉下标为2的选项        $("#selectID).get(0).options[2].attr("disabled", true);        //禁用最后一个的选项     $("#selectID option:last").attr("disabled", true);    }        </script>
时间: 2024-10-19 15:50:01

JQuery对select option的操作的相关文章

JQuery 对 Select option 的操作---转载

<select id="selectID" > <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option

JQuery 对 Select option 的操作

心静禅定ing It is my decision,It is my life. JQuery 对 Select option 的操作 下拉框: <select id="selectID" >        <option value="1">1</option>        <option value="2">2</option>        <option value=&q

【jq】JQuery对select option的操作

下拉框 <select id="selectID"> <option vlaue="1">1</option> <option vlaue="2">2</option> <option vlaue="3">3</option> </select> jq针对下拉框的基本操作有 //选择更改事件 $("#selectID&qu

jquery获得select option的值和对select option的操作

1.jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text 3. var checkValue=$("#selec

Jquery获取select option动态添加自定义属性值失效

Jquery获取select option动态添加自定义属性值失效 2014/12/31 11:49:19 中国学网转载 编辑:李强 http://www.xue163.com/588880/39096/390963333.html 为了帮助网友解决“Jquery获取select optio”相关的问题,中国学网通过互联网对“Jquery获取select optio”相关的解决方案进行了整理,用户详细问题包括:jqueryselectie9  function GetFenceItemData(

jquery获得select option的值 和对select option的操作【转藏】

获取Select : 获取select 选中的 text : $("#ddlRegType").find("option:selected").text(); 获取select选中的 value: $("#ddlRegType ").val(); 获取select选中的索引: $("#ddlRegType ").get(0).selectedIndex; 设置select: 设置select 选中的索引: $("#d

jquery获得select option的值 和对select option的操作

jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text 3. var checkValue=$("#sele

【转】jQuery获取Select option 选择的Text和Value

获取一组radio被选中项的值:var item = $('input[name=items][checked]').val();获取select被选中项的文本:var item = $("select[@name=items] option[@selected]").text(); 获取select被选中项的文本 :var item = $("select[name=items] option[selected]").text(); 或$("select

jQuery获取select option

jQuery的一些方法理出一些常用的方法: //获取第一个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