利用js取到下拉框中選擇的值

2022-01-14 20:43:35 字數 718 閱讀 2191

現在的需求是:下拉框中要是選擇加盟商讓其繼續選擇學校,要是選擇平台管理員則不需要選擇學校。隱藏選擇下拉列表。

/// /// 平台角色

///

public enum administratorrole

@html.labelfor(x => x.administratorrole, new )

@html.enumdropdownlistfor(x => x.administratorrole, new )

@html.validationmessagefor(x => x.administratorrole)

@html.labelfor(x => x.schoolid, new )

@html.dropdownlistfor(x => x.schoolid, model.schools, new )

@html.validationmessagefor(x => x.schoolid)

先讓學校列表隱藏,style=」display:none」;效果和下圖一樣。我們利用下拉框的onchange事件來讓其執行設定的方法showschool(),這裡面的引數是我們選擇的值,this代表的administratorrole。

這樣就可以了。

下拉框中選項的快速定位

對於選項很多的下拉框,人工定位到想要的專案是很費勁的。瀏覽器其實原生支援下拉選擇框根據鍵盤輸入自動定位到相應條目的。通過輸入條目字母定位到下拉框中條目的位置 方便是方便,有個問題是連續輸入不能間隔太久,這個間隔實測中感受是非常短的,如果想找的條目比較難輸入,就無法在短時間內完成這個操作。那有沒有相應...

jquery獲取下拉框的值 設定下拉框的值

獲取select 獲取select 選中的 text ddlregtype find option selected text 獲取select選中的 value ddlregtype val 獲取select選中的索引 ddlregtype get 0 selectedindex 設定select...

python selenium 下拉框的選擇

1 首先匯入select s大寫 from selenium.webdriver.support.ui import select2 介面展示圖 3 使用三種方法對下拉框元素定位 gzcontent xs 這個是我進行分層管理的路徑,需要自己更換成想要的路徑 下面用三種方法對下拉列表進行選擇 通過i...