91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

黎川县| 涞水县| 万载县| 台东县| 绥中县| 青岛市| 峡江县| 迁安市| 秦安县| 新蔡县| 周宁县| 莫力| 丹阳市| 玉田县| 咸阳市| 宜阳县| 汉沽区| 简阳市| 且末县| 连城县| 云梦县| 尼木县| 北辰区| 勃利县| 松江区| 安吉县| 萝北县| 南宫市| 阿拉善右旗| 团风县| 郓城县| 大安市| 炎陵县| 淳安县| 洛南县| 渑池县| 昆山市| 册亨县| 海阳市| 枝江市| 正宁县|