国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

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

2020-01-18 00:18:26
字體:
來源:轉載
供稿:網友
用Javascript為DropDownList控件下拉式選擇添加一個Item至定義索引位置。
準備數據,創建一個對象,將是存儲DropDownList控件每個Item數據。
復制代碼 代碼如下:

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放置一個DropDownList控件
復制代碼 代碼如下:

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

在.aspx.vb綁定數據
復制代碼 代碼如下:

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 = "新聞頻道"
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

準備數據與環境后,寫Javascript:
復制代碼 代碼如下:

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

DEMO:
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 渑池县| 保康县| 上高县| 平武县| 尼木县| 同德县| 沙河市| 泸溪县| 泰来县| 汽车| 肇庆市| 壶关县| 奉化市| 博乐市| 太和县| 嘉黎县| 大庆市| 河津市| 兰考县| 株洲市| 台东县| 二连浩特市| 九江市| 古丈县| 和硕县| 凯里市| 阿城市| 阿荣旗| 长泰县| 广饶县| 乐昌市| 含山县| 依安县| 唐海县| 虎林市| 上林县| 贵定县| 龙井市| 金华市| 台中县| 石台县|