JavaScript 真的是不容易理解的東西。
光是要判斷 DropDownList 目前的
Value 或 Text 就快頭昏了....。
除了之前學到的:
// 取得 select 的 Text
var SelectedText
= $(this).find( ":selected").text();
// 取得 select 的 Value
var SelectedValue = $( this).val();
最近又學了下面的:
//取得 DropDownList 現在選的是第幾筆
$(#DropDownList_ID).val().length
//取得 DropDownList 現在顯示的文字
$("#DropDownList_ID option:selected").text()
//取得 DropDownList 第一筆
$("#DropDownList_ID").find("option").get(0).selected
/* JavaScript 端的 code */
function fn()
{
if ($("#DropDownList_ID").val().length == 0) {
alert("現在選的是第一筆");
}
if ($("#DropDownList_ID option:selected").text() == "One") {
alert("選的是One");
}
if ($("#DropDownList_ID").find("option").get(0).selected == true) {
alert("現在選的是第一筆");
}
}