jQuery设置select的选中值

来源:互联网 发布:mac图片预览软件 编辑:程序博客网 时间:2024/06/04 18:36

比如 <select id="testSelect"></select>

  1. 设置 value 为 test 的项选中
    $("#testSelect").val("test");
  2. 设置 text 为 test 的项选中
    $("#testSelect").find("option[text='test']").attr("selected", true);

example 1

<html><head>    <script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>    <script>        function sel() {            document.getElementById("show_index").innerHTML = $("#testSelect").get(0).selectedIndex;            document.getElementById("show_all_text").innerHTML = $("#testSelect").text(); // 获取所有的文本            document.getElementById("show_text").innerHTML = $("#testSelect option:selected").text(); // 获取选中的选项的文本            document.getElementById("show_value").innerHTML = $("#testSelect").val();            if ($("#op_3").is(":checked")) {                document.getElementById("show_isSelected").innerHTML = "选中了";            } else {                document.getElementById("show_isSelected").innerHTML = "没选中";            }            $("#testSelect").aped("<option value="+op_5+">"+推荐系统+"<option>");        }        function set() {            $("#testSelect").val(""); //设置value为空的项为选中状态            sel();        }    </script></head><body>    <button onclick="set()">测试</button>    <select id="testSelect" onchange="sel()">        <option id="op_0" value="">请选择</option>        <option id="op_1" value="Deep Learning">深度学习</option>        <option id="op_2" value="Machine Learning">机器学习</option>        <option id="op_3" value="Data Mining">数据挖掘</option>        <option id="op_4" value="Image Processing">图像处理</option>    </select>    <br>    <hr><font color="red">选中的option索引:</font><p id="show_index"></p>    <hr><font color="red">选中的option文本:</font><p id="show_text"></p>    <hr><font color="red">选中的option的值:</font><p id="show_value"></p>    <hr><font color="red">“数据挖掘”选项是否被选中:</font><p id="show_isSelected"></p>    <hr><font color="red">所有选项的文本:</font><p id="show_all_text"></p></body></html>
原创粉丝点击