js操作相關(guān)方法
來(lái)源:易賢網(wǎng) 閱讀:893 次 日期:2016-06-29 09:14:56
溫馨提示:易賢網(wǎng)小編為您整理了“js操作相關(guān)方法”,方便廣大網(wǎng)友查閱!

1.判斷select選項(xiàng)中 是否存在value=paravalue的item

2.向select選項(xiàng)中 加入一個(gè)item

3.從select選項(xiàng)中 刪除一個(gè)item

4.修改select選項(xiàng)中 value=paravalue的text為paratext

5.設(shè)置select中text=paratext的第一個(gè)item為選中

6.設(shè)置select中value=paravalue的item為選中

7.得到select的當(dāng)前選中項(xiàng)的value

8.得到select的當(dāng)前選中項(xiàng)的text

9.得到select的當(dāng)前選中項(xiàng)的index

10.清空select的項(xià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[objselect.options.length] = varitem;

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)中 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));

}

}

//5.設(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));

}

}

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

//document.all.objselect.value = objitemvalue;

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

//var currselectvalue = document.all.objselect.value;

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

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

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

//var currselectindex = document.all.objselect.selectedindex;

//10.清空select的項(xiàng)

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

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

2025國(guó)考·省考課程試聽(tīng)報(bào)名

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