其實就跟取得一般UI元件的值相同。步驟如下

1.從網頁的source code確定該UI的正確ID
2.使用jQuery透過UI的正確ID並取值

網頁畫面如下,UI元件是telerik:RadComboBox。需求是透過jQuery取得”請輸入學校”的值

.aspx


<div id="ctl00_MainContent_cboFirstColleges" class="RadComboBox RadComboBox_Default" minlength="2" style="width:250px;white-space:normal;">
	<table summary="combobox" style="border-width:0;border-collapse:collapse;width:100%">
		<tbody><tr>
			<td class="rcbInputCell rcbInputCellLeft" style="width:100%;"><input name="ctl00$MainContent$cboFirstColleges" type="text" class="rcbInput radPreventDecorate valid" id="ctl00_MainContent_cboFirstColleges_Input" value="憭批?憭批飛" autocomplete="off" aria-invalid="false"></td><td class="rcbArrowCell rcbArrowCellRight"><a id="ctl00_MainContent_cboFirstColleges_Arrow" style="overflow: hidden;display: block;position: relative;outline: none;">select</a></td>
		</tr>
	</tbody></table><input id="ctl00_MainContent_cboFirstColleges_ClientState" name="ctl00_MainContent_cboFirstColleges_ClientState" type="hidden" autocomplete="off" value="{&quot;logEntries&quot;:[],&quot;value&quot;:&quot;&quot;,&quot;text&quot;:&quot;隢撓?亙飛??quot;,&quot;enabled&quot;:true,&quot;checkedIndices&quot;:[],&quot;checkedItemsTextOverflows&quot;:false}">
</div>

其中ctl00_MainContent_cboFirstColleges就是UI的ID。接下來就是使用jQuery

透過ID取得值。

.cs

function CheckUserHighestEducationSchool() {
	let userHighestEducationSchool = $("#ctl00_MainContent_cboFirstColleges").val();
}

userHighestEducationSchool就是存放”請輸入學校”。