最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時間:2013年01月16日 09:23:59   作者:  
用Javascript為DropDownList控件下拉式選擇添加一個Item至定義索引位置;準備數(shù)據(jù),創(chuàng)建一個對象,將是存儲DropDownList控件每個Item數(shù)據(jù)
用Javascript為DropDownList控件下拉式選擇添加一個Item至定義索引位置。
準備數(shù)據(jù),創(chuàng)建一個對象,將是存儲DropDownList控件每個Item數(shù)據(jù)。
復制代碼 代碼如下:

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綁定數(shù)據(jù)
復制代碼 代碼如下:

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

準備數(shù)據(jù)與環(huán)境后,寫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:

相關(guān)文章

最新評論

兴文县| 颍上县| 荃湾区| 高尔夫| 张家港市| 孝感市| 锦屏县| 吉木乃县| 石狮市| 舞阳县| 思南县| 措美县| 唐山市| 苗栗市| 宜昌市| 饶阳县| 广水市| 泸州市| 庆安县| 桂平市| 柳州市| 河源市| 鱼台县| 巩留县| 房产| 台中市| 松溪县| 喀喇沁旗| 石首市| 德令哈市| 吉木乃县| 锡林浩特市| 沿河| 教育| 历史| 克什克腾旗| 南京市| 龙陵县| 海宁市| 古蔺县| 临沧市|