主頁(yè) > 知識(shí)庫(kù) > 用javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置

用javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置

熱門標(biāo)簽:百度ai地圖標(biāo)注 預(yù)測(cè)式外呼系統(tǒng)使用說(shuō)明 玉林市機(jī)器人外呼系統(tǒng)哪家好 申請(qǐng)400電話手續(xù) 電話機(jī)器人軟件銷售工作 同安公安400電話怎么申請(qǐng)流程 蘋果手機(jī)凱立德地圖標(biāo)注 合肥電銷外呼系統(tǒng)哪家公司做的好 南陽(yáng)外呼系統(tǒng)定制化
用Javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置。
準(zhǔn)備數(shù)據(jù),創(chuàng)建一個(gè)對(duì)象,將是存儲(chǔ)DropDownList控件每個(gè)Item數(shù)據(jù)。
復(fù)制代碼 代碼如下:

Imports Microsoft.VisualBasic
Namespace Insus.NET
Public Class Catalog
Private _ID As Integer
Private _Name As String
Public Property ID As Integer
Get
Return _ID
End Get
Set(value As Integer)
_ID = value
End Set
End Property
Public Property Name As String
Get
Return _Name
End Get
Set(value As String)
_Name = value
End Set
End Property
End Class
End Namespace

在.aspx放置一個(gè)DropDownList控件
復(fù)制代碼 代碼如下:

asp:DropDownList ID="DropDownListCatalog" runat="server">/asp:DropDownList>

在.aspx.vb綁定數(shù)據(jù)
復(fù)制代碼 代碼如下:

Imports Insus.NET
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Not IsPostBack Then
Data_Binding()
End If
End Sub
Private Sub Data_Binding()
Me.DropDownListCatalog.DataSource = GetData()
Me.DropDownListCatalog.DataValueField = "ID"
Me.DropDownListCatalog.DataTextField = "Name"
Me.DropDownListCatalog.DataBind()
End Sub
Private Function GetData() As List(Of Catalog)
Dim cls As New List(Of Catalog)
Dim cl As Catalog = New Catalog()
cl.ID = 1
cl.Name = "新聞?lì)l道"
cls.Add(cl)
cl = New Catalog()
cl.ID = 2
cl.Name = "體育頻道"
cls.Add(cl)
cl = New Catalog()
cl.ID = 3
cl.Name = "軍事頻道"
cls.Add(cl)
cl = New Catalog()
cl.ID = 4
cl.Name = "教育頻道"
cls.Add(cl)
Return cls
End Function
End Class

準(zhǔn)備數(shù)據(jù)與環(huán)境后,寫Javascript:
復(fù)制代碼 代碼如下:

window.onload = function () {
var catalog = document.getElementById("%=DropDownListCatalog.ClientID%>");
var obj = document.createElement("option")
obj.text = "請(qǐng)選擇..."
obj.value = 0
catalog.options.insertBefore(obj, catalog.options[0]);
}

DEMO:
您可能感興趣的文章:
  • js 索引下標(biāo)之li集合綁定點(diǎn)擊事件
  • JS遍歷ul下的li點(diǎn)擊彈出li的索引的實(shí)現(xiàn)方法
  • JS數(shù)組操作(數(shù)組增加、刪除、翻轉(zhuǎn)、轉(zhuǎn)字符串、取索引、截取(切片)slice、剪接splice、數(shù)組合并)
  • JavaScript遍歷DOM元素的常見(jiàn)方式示例
  • JavaScript實(shí)現(xiàn)的DOM樹(shù)遍歷方法詳解【二叉DOM樹(shù)、多叉DOM樹(shù)】
  • JS遍歷DOM文檔樹(shù)的方法實(shí)例詳解
  • javascript先序遍歷DOM樹(shù)的方法
  • JavaScript簡(jiǎn)單遍歷DOM對(duì)象所有屬性的實(shí)現(xiàn)方法
  • JS實(shí)現(xiàn)點(diǎn)擊li標(biāo)簽彈出對(duì)應(yīng)的索引功能【案例】

標(biāo)簽:南京 淄博 嘉興 海南 南昌 南京 揚(yáng)州 臺(tái)州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置》,本文關(guān)鍵詞  用,javascript,為,DropDownList,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《用javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于用javascript為DropDownList控件下拉式選擇添加一個(gè)Item至定義索引位置的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章