本篇內(nèi)容介紹了“javascript中options集合的用法”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
在上黨等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計、網(wǎng)站制作 網(wǎng)站設(shè)計制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計,成都全網(wǎng)營銷,成都外貿(mào)網(wǎng)站建設(shè),上黨網(wǎng)站建設(shè)費用合理。object.options.add(new Option(label,value))方法向集合里添加一項option對象;
object.options.remove(index)方法移除options集合中的指定項;
object.options(index)或options.item(index)可以通過索引獲取options集合的指定項;
select標(biāo)記還有一個屬性為selectedIndex,通過它可能獲取當(dāng)前選擇的option索引:object.selectedIndex
1.清空options集合
Code highlighting produced by Actipro CodeHighlighter (freeware)
/tupian/20230522/syntaxeditor optionsClear(object)
{
var length = object.options.length;
for(var i=length-1;i>=0;i--){
e.options.remove(i);
}
}
2.添加一項新option
Code highlighting produced by Actipro CodeHighlighter (freeware)
/tupian/20230522/syntaxeditor addOption(object)
{
object.add(new Option(label,value));
//使用options集合中最后一項獲取焦點
object.selectedIndex = object.lentht-1;
}
3.刪除options集合中指定的一項option
Code highlighting produced by Actipro CodeHighlighter (freeware)
/tupian/20230522/syntaxeditor removeOption(index)
{
if(index >=0)
{
object.remove(index);
//使用options集合中最后一項獲取焦點
object.selectedIndex = object.lentht-1;
}
}
4.獲取當(dāng)前選定的option的真實值value
Code highlighting produced by Actipro CodeHighlighter (freeware)
/tupian/20230522/syntaxeditor getCurrentOptionValue(index)
{
if(index >=0)
return object(index).value;
}
5.獲取當(dāng)前選定的option的顯示值label
Code highlighting produced by Actipro CodeHighlighter (freeware)
/tupian/20230522/syntaxeditor getCurrentOptionLabel(index)
{
if(index >=0)
return object(index).text;
}
“javascript中options集合的用法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
網(wǎng)頁標(biāo)題:javascript中options集合的用法-創(chuàng)新互聯(lián)
文章位置:http://aaarwkj.com/article44/jcdhe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、用戶體驗、網(wǎng)站營銷、商城網(wǎng)站、域名注冊、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容