js操作下拉框
來源:易賢網(wǎng) 閱讀:730 次 日期:2016-06-22 09:42:38
溫馨提示:易賢網(wǎng)小編為您整理了“js操作下拉框”,方便廣大網(wǎng)友查閱!

1.判斷select選項中 是否存在value=paravalue地item

function jsselectisexititem(objselect, objitemvalue) {

var isexit = false;

for (var i = 0; i < objselect.options.length; i++) {

if (objselect.options[i].value == objitemvalue) {

isexit = true;

break;

}

}

return isexit;

}

// 2.向select選項中 加入一個item

function jsadditemtoselect(objselect, objitemtext, objitemvalue) {

//判斷是否存在

if (jsselectisexititem(objselect, objitemvalue)) {

alert(該item地value值已經(jīng)存在);

} else {

var varitem = new option(objitemtext, objitemvalue);

objselect.options.add(varitem);

alert(成功加入);

}

}

// 3.從select選項中 刪除一個item

function jsremoveitemfromselect(objselect, objitemvalue) {

//判斷是否存在

if (jsselectisexititem(objselect, objitemvalue)) {

for (var i = 0; i < objselect.options.length; i++) {

if (objselect.options[i].value == objitemvalue) {

objselect.options.remove(i);

break;

}

}

alert(成功刪除);

} else {

alert(該select中 不存在該項);

}

}

// 4.刪除select中選中地項

function jsremoveselecteditemfromselect(objselect) {

var length = objselect.options.length - 1;

for(var i = length; i >= 0; i--){

if(objselect[i].selected == true){

objselect.options[i] = null;

}

}

}

// 5.修改select選項中 value=paravalue地text為paratext

function jsupdateitemtoselect(objselect, objitemtext, objitemvalue) {

//判斷是否存在

if (jsselectisexititem(objselect, objitemvalue)) {

for (var i = 0; i < objselect.options.length; i++) {

if (objselect.options[i].value == objitemvalue) {

objselect.options[i].text = objitemtext;

break;

}

}

alert(成功修改);

} else {

alert(該select中 不存在該項);

}

}

// 6.設(shè)置select中text=paratext地第一個item為選中

function jsselectitembyvalue(objselect, objitemtext) {

//判斷是否存在

var isexit = false;

for (var i = 0; i < objselect.options.length; i++) {

if (objselect.options[i].text == objitemtext) {

objselect.options[i].selected = true;

isexit = true;

break;

}

}

//show出結(jié)果

if (isexit) {

alert(成功選中);

} else {

alert(該select中 不存在該項);

}

}

// 7.設(shè)置select中value=paravalue地item為選中

document.all.objselect.value = objitemvalue;

// 8.的到select地當(dāng)前選中項地value

var currselectvalue = document.all.objselect.value;

// 9.的到select地當(dāng)前選中項地text

var currselecttext = document.all.objselect.options[document.all.objselect.selectedindex].text;

// 10.的到select地當(dāng)前選中項地index

var currselectindex = document.all.objselect.selectedindex;

// 11.清空select地項

document.all.objselect.options.length = 0;

更多信息請查看腳本欄目
易賢網(wǎng)手機網(wǎng)站地址:js操作下拉框
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)