jquery新增,删除 ,修改,清空select中的option

jQuery获取Select选择的Text和Value:

1. var checkText=jQuery("#select_id").find("option:selected").text(); //获取Select选择的Text

2. var checkValue=jQuery("#select_id").val(); //获取Select选择的option Value

3. var checkIndex=jQuery("#select_id ").get(0).selectedIndex; //获取Select选择的索引值

4. var maxIndex=jQuery("#select_id option:last").attr("index"); //获取Select最大的索引值

jQuery添加/删除Select的Option项:

1. jQuery("#select_id").append("<option value=‘Value‘>Text</option>"); //为Select追加一个Option(下拉项)

2. jQuery("#select_id").prepend("<option value=‘0‘>请选择</option>"); //为Select插入一个Option(第一个位置)

3. jQuery("#select_id option:last").remove(); //删除Select中索引值最大Option(最后一个)

4. jQuery("#select_id option[index=‘0‘]").remove(); //删除Select中索引值为0的Option(第一个)

5. jQuery("#select_id option[value=‘3‘]").remove(); //删除Select中Value=‘3‘的Option

6. jQuery("#select_id option[text=‘4‘]").remove(); //删除Select中Text=‘4‘的Option

内容清空:

jQuery("#select_id").empty();

时间: 2024-12-28 01:01:58

jquery新增,删除 ,修改,清空select中的option的相关文章

JQuery操作select中的option

html页面代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv=&q

jQuery 增加 删除 修改select option

jQuery获取Select选择的Text和Value: 1. var checkText=jQuery("#select_id").find("option:selected").text(); //获取Select选择的Text 2. var checkValue=jQuery("#select_id").val(); //获取Select选择的option Value 3. var checkIndex=jQuery("#sele

jQuery获取select中所有option值

<select id="language"> <option value="">请选择</option> <option value="Java">Java</option> <option value="PHP">PHP</option> <option value="Jekyll">Jekyll</op

JS 实现 select中指定option选中触发事件(下拉框)

转自:http://www.cnblogs.com/moli-/p/6406170.html 在用到下拉列表框select时,需要对选中的<option>选项触发事件,其实<option>本身没有触发事件方法,我们只有在select里的onchange方法里触发. 想添加一个option的触发事件,在option中添加onclick 点来点去就是不会触发事件 又在select中添加onclick 这下可好了,没选option呢就触发了 当我们触发select的双击事件时,用ondb

vue select中的option循环的时候,要使用 :value,不能使用 v-model

<select class="classColor" @change="select" v-model="selectValue"> <option v-for="(itema, index) in classSelect" :key="index" v-text="itema.class_name" :value="itema.id"><

jQuery增加删除修改tab导航特效

HTML:         <div class="container iden_top">                <ul>                    <li>                        <p class='iden_add_name'>应用标识1</p>                        <span class="iden_top_button"&

select中的option被选中时页面的跳转

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <script src='js/jquery.min.js'></script></head><body> <select name="" id='sel

jsp在select中的option中编写if标签

<select onchange="lxx(this)"> <option value="">全部</option> <option value="水电" <c:if test='${lx=="水电"}'>selected=selected</c:if> >水电</option> <option value="火电"

js操作select控件大全(包含新增、修改、删除、选中、清空、判断存在等)

原文:js操作select控件大全(包含新增.修改.删除.选中.清空.判断存在等) js操作select控件大全(包含新增.修改.删除.选中.清空.判断存在等) js 代码// 1.判断select选项中 是否存在Value="paraValue"的Item        function jsSelectIsExitItem(objSelect, objItemValue) {            var isExit = false;            for (var i