<script language="javascript">
$(document).ready(function() {
//綁定下拉框change事件,當(dāng)下來框改變時(shí)調(diào)用 SelectChange()方法
$("#selectID").change(function() { SelectChange(); });
})
function SelectChange() {
//獲取下拉框選中項(xiàng)的text屬性值
var selectText = $("#selectID").find("option:selected").text();
alert(selectText);
//獲取下拉框選中項(xiàng)的value屬性值
var selectValue = $("#selectID").val();
alert(selectValue);
//獲取下拉框選中項(xiàng)的index屬性值
var selectIndex = $("#selectID").get(0).selectedIndex;
alert(selectIndex);
////獲取下拉框最大的index屬性值
var selectMaxIndex = $("#selectID option:last").attr("index");
alert(selectMaxIndex);
}
function aa() {
//設(shè)置下拉框index屬性為5的選項(xiàng) 選中
$("#selectID").get(0).selectedIndex = 5;
}
function bb() {
//設(shè)置下拉框value屬性為4的選項(xiàng) 選中
$("#selectID").val(4);
}
function cc() {
//設(shè)置下拉框text屬性為5的選項(xiàng) 選中
$("#selectID option[text=5]").attr("selected", "selected");
$("#yyt option:contains('5')").attr("selected", true);
}
function dd() {
//在下拉框最后添加一個(gè)選項(xiàng)
$("#selectID").append("<option value='7'>7</option>");
}
function ee() {
//在下拉框最前添加一個(gè)選項(xiàng)
$("#selectID").prepend("<option value='0'>0</option>")
}
function ff() {
//移除下拉框最后一個(gè)選項(xiàng)
$("#selectID option:last").remove();
}
function gg() {
//移除下拉框 index屬性為1的選項(xiàng)
$("#selectID option[index=1]").remove();
}
function hh() {
//移除下拉框 value屬性為4的選項(xiàng)
$("#selectID option[value=4]").remove();
}
function ii() {
//移除下拉框 text屬性為5的選項(xiàng)
$("#selectID option[text=5]").remove();
}
</script>
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)
點(diǎn)擊舉報(bào)。