逐月下拉列表

2021-10-06 12:06:31 字數 2595 閱讀 4355

在這裡,我建立了乙個簡單的下拉列表,顯示了每年的月份。

您可以從您要開始的年份初始化年份。

我從一年開始

1999」。

同樣,

u可以使用以下示例顯示某些類別的動物列表或某些product,etc中的專案列表。

這是**:

<%

dim startyear,tillyear,strcheck

startyear = 1999

tillyear = year(date())

strcheck = ""

dim monthsarr(11)

monthsarr(0) = "jan"

monthsarr(1) = "feb"

monthsarr(2) = "mar"

monthsarr(3) = "apr"

monthsarr(4) = "may"

monthsarr(5) = "jun"

monthsarr(6) = "jul"

monthsarr(7) = "aug"

monthsarr(8) = "sep"

monthsarr(9) = "oct"

monthsarr(10) = "nov"

monthsarr(11) = "dec"

dim i,strvalue            

%>

--select--

<%

for yrs = startyear to tillyear

if strcheck <> yrs then

%>

">

<%end if

for i = 0 to ubound(monthsarr)

%>

"<%if monthsarr(i) = request.form("cmbmonyear") then     response.write("selected") end if%>>

<%=monthsarr(i)%>

<%    next

strcheck = yrs

next

%>

說明:步驟1:宣告並初始化變數。

根據需要初始化「開始年份」和「結束年份」。

在這裡,我從2023年開始進入到今年。

<%

dim startyear,tillyear,strcheck

startyear = 1999

tillyear = year(date())

strcheck = ""

%>

步驟2:宣告並建立陣列數月。

<%    

dim monthsarr(11)

monthsarr(0) = "jan"

monthsarr(1) = "feb"

monthsarr(2) = "mar"

monthsarr(3) = "apr"

monthsarr(4) = "may"

monthsarr(5) = "jun"

monthsarr(6) = "jul"

monthsarr(7) = "aug"

monthsarr(8) = "sep"

monthsarr(9) = "oct"

monthsarr(10) = "nov"

monthsarr(11) = "dec"

dim i,strvalue            

%>

步驟3:以選項組和第乙個值「 --select--」開始選擇列表

--select--

步驟4:迴圈瀏覽開始年和結束年

檢查是否已顯示年份。 如果不是,則顯示else跳過並顯示月份。

在「 optgroup」中顯示年份

<%

for yrs = startyear to tillyear

if strcheck <> yrs then

%>

">

<%end if%>

第5步:遍歷一系列月份並顯示月份
<%         for i = 0 to ubound(monthsarr)

%>

"<%if monthsarr(i) = request.form("cmbmonyear") then     response.write("selected") end if%>>

<%=monthsarr(i)%>

步驟6:結束inner for loop並在變數中分配年份
<%    next

strcheck = yrs

%>

步驟7:結束外部迴圈

<%next

%>

from:

逐月查詢 逐月下拉列表

逐月查詢 在這裡,我建立了乙個簡單的下拉列表,顯示了每年的月份。您可以從您要開始的年份初始化年份。我從一年開始 1999 同樣,u可以使用以下示例顯示某些類別中的動物列表或某些product,etc中的專案列表。這是 dim startyear,tillyear,strcheck startyear...

jquery下拉列表

由於需要 用以前發過的摺疊選單原始碼改了一下 做成了下拉列表 感覺還不錯 留著以後使用 首頁主選單.子選單.子選單.子選單.子選單.子選單.子選單.主選單.子選單.子選單.子選單.子選單.子選單.子選單.主選單.子選單.子選單.子選單.子選單.子選單.子選單.主選單.子選單.子選單.子選單.子選單....

Bootstrap下拉列表

使用下拉列表 dropdown 外掛程式,能夠向不論什麼元件 比方導航欄 標籤頁 膠囊式導航選單 button等 加入下拉列表。假設想要單獨引用該外掛程式的功能,那麼須要引用 dropdown.js。或者能夠引入bootstrap.js或壓縮版的bootstrap.min.js。通過 data 屬性...