jqJQuery对select option的操作
Posted 蓿苜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqJQuery对select option的操作相关的知识,希望对你有一定的参考价值。
下拉框
<select id="selectID">
<option vlaue="1">1</option>
<option vlaue="2">2</option>
<option vlaue="3">3</option>
</select>
jq针对下拉框的基本操作有
//选择更改事件
$("#selectID").change(function(){ selectChangeFunCode; });
//获取属性值
//获取下拉框选中项的text属性值
var selectText = $("#selectID").find("option:selected").text();
console.log(selectText);
//获取下拉框选中项的value属性值 ①
var selectValue = $("#selectID").val();
console.log(selectValue);
//获取下拉框选中项的index属性值
var selectIndex = $("#selectID").get(0).selectedIndex;
console.log(selectIndex);
////获取下拉框最大的index属性值
var selectMaxIndex = $("#selectID option:last").attr("index");
console.log(selectMaxIndex);
//获取文本值
//获取下拉框选中项的 文本内容 ②
var selecthtml = $("#selectID").find("option:selected").html();
console.log(selectHtml );
要更改 下拉框其中一个option,需要同时操作①②
$("#selectID").get(0).selectedIndex = 5;
//设置下拉框value属性为4的选项 选中
$("#selectID").val(4);
//设置下拉框text属性为5的选项 选中
$("#selectID option[text=5]").attr("selected", "selected");
//在下拉框最后添加一个选项
$("#selectID").append("<option value=‘7‘>7</option>");
//在下拉框最前添加一个选项
$("#selectID").prepend("<option value=‘0‘>0</option>")
//移除下拉框最后一个选项
$("#selectID option:last").remove();
//移除下拉框 index属性为1的选项
$("#selectID option[index=1]").remove();
//移除下拉框 value属性为4的选项
$("#selectID option[value=4]").remove();
//移除下拉框 text属性为5的选项
$("#selectID option[text=5]").remove();
以上是关于jqJQuery对select option的操作的主要内容,如果未能解决你的问题,请参考以下文章