午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    js操作select下拉框
    來源:易賢網(wǎng) 閱讀:754 次 日期:2014-11-03 11:34:49
    溫馨提示:易賢網(wǎng)小編為您整理了“js操作select下拉框”,方便廣大網(wǎng)友查閱!

    1.判斷select選項(xiàng)中 是否存在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選項(xiàng)中 加入一個(gè)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選項(xiàng)中 刪除一個(gè)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中 不存在該項(xiàng));

    }

    }

    // 4.刪除select中選中地項(xiàng)

    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選項(xiàng)中 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中 不存在該項(xiàng));

    }

    }

    // 6.設(shè)置select中text=paratext地第一個(gè)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中 不存在該項(xiàng));

    }

    }

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

    document.all.objselect.value = objitemvalue;

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

    var currselectvalue = document.all.objselect.value;

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

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

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

    var currselectindex = document.all.objselect.selectedindex;

    // 11.清空select地項(xiàng)

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

    更多信息請查看IT技術(shù)專欄

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

    2025國考·省考課程試聽報(bào)名

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機(jī)站點(diǎn) | 投訴建議
    工業(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:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)