欢迎来到代码驿站!

jquery

当前位置:首页 > 网页前端 > jquery

jQuery动态添加删除select项(实现代码)

时间:2022-10-15 10:19:06|栏目:jquery|点击:

复制代码 代码如下:

// 添加
function col_add() {
 var selObj = $("#mySelect");
 var value="value";
 var text="text";
 selObj.append("<option value='"+value+"'>"+text+"</option>");
}
// 删除
function col_delete() {
 var selOpt = $("#mySelect option:selected");
 selOpt.remove();
}
// 清空
function col_clear() {
 var selOpt = $("#mySelect option");
 selOpt.remove();
}

以上方法为jQuery动态添加、删除和清空select。下面是纯js的写法:
复制代码 代码如下:

var sid = document.getElementById("mySelect");
sid.options[sid.options.length]=new Option("text","value");   // 在select最后添加一项

其他常用的方法:
复制代码 代码如下:

$("#mySelect").change(function(){//code...});    //select选中项改变时触发

// 获取select值
var text=$("#mySelect").find("option:selected").text();   //获取Select选中项的Text
var value=$("#mySelect").val();   //获取Select选中项的Value
var value=$("#mySelect&nbsp;option:selected").attr("value"); &nbsp; //获取Select选中项的Value
var index=$("#mySelect").get(0).selectedIndex;   //获取Select选中项的索引值,从0开始
var index=$("#mySelect option:selected").attr("index"); &nbsp; //不可用!!!
var index=$("#mySelect option:selected").index(); &nbsp; //获取Select选中项的索引值,从0开始
var maxIndex=$("#mySelect option:last").attr("index");   //不可用!!!
var maxIndex=$("#mySelect option:last").index();//获取Select最大索引值,从0开始
$("#mySelect").prepend("<option value='value'>text</option>"); &nbsp; //Select第一项前插入一项

// 设置select值
//根据索引设置选中项
$("#mySelect").get(0).selectedIndex=index;//index为索引值&nbsp;
//根据value设置选中项
$("#mySelect").attr("value","newValue");&nbsp;
$("#mySelect").val("newValue");&nbsp;
$("#mySelect").get(0).value = value;&nbsp;
//根据text设置对应的项为选中项
var count=$("#mySelect option").length;&nbsp;
for(var i=0;i<count;i++)&nbsp;
{
    if($("#mySelect").get(0).options[i].text == text)&nbsp;
    {&nbsp;
        $("#mySelect").get(0).options[i].selected = true;&nbsp;
        break;&nbsp;
    }&nbsp;
}&nbsp;

// 清空select
$("#mySelect").empty();

上一篇:使用jquery库实现电梯导航效果

栏    目:jquery

下一篇:没有了

本文标题:jQuery动态添加删除select项(实现代码)

本文地址:http://www.codeinn.net/misctech/216436.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有