亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript中options集合的用法

發布時間:2021-07-10 14:08:15 來源:億速云 閱讀:165 作者:chen 欄目:編程語言

本篇內容介紹了“javascript中options集合的用法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

object.options.add(new Option(label,value))方法向集合里添加一項option對象;
object.options.remove(index)方法移除options集合中的指定項;
object.options(index)或options.item(index)可以通過索引獲取options集合的指定項;

select標記還有一個屬性為selectedIndex,通過它可能獲取當前選擇的option索引:object.selectedIndex

1.清空options集合


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtfunction   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)
http://www.CodeHighlighter.com/

--&gtfunction addOption(object)
{
object.add(new Option(label,value));
//使用options集合中最后一項獲取焦點
   object.selectedIndex = object.lentht-1;
}

3.刪除options集合中指定的一項option


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtfunction removeOption(index)
{
if(index >=0)
{
object.remove(index);
//使用options集合中最后一項獲取焦點
       object.selectedIndex = object.lentht-1;
}
}

4.獲取當前選定的option的真實值value


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtfunction getCurrentOptionValue(index)
{
if(index >=0)
return object(index).value;
}

5.獲取當前選定的option的顯示值label


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtfunction getCurrentOptionLabel(index)
{
if(index >=0)
return object(index).text;
}

“javascript中options集合的用法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保靖县| 故城县| 晋城| 乌拉特后旗| 疏勒县| 陈巴尔虎旗| 新蔡县| 贺州市| 依兰县| 五原县| 三原县| 丰原市| 南丹县| 山阴县| 菏泽市| 股票| 开化县| 平果县| 仲巴县| 高密市| 安泽县| 胶州市| 田阳县| 洛扎县| 新巴尔虎左旗| 津南区| 正蓝旗| 塘沽区| 时尚| 昆明市| 三亚市| 五莲县| 惠安县| 天长市| 鸡东县| 临汾市| 思茅市| 西林县| 浦江县| 五家渠市| 河池市|