—、獲取dropdownlist的text(ddlList為服務器端dropdownlist的ID,生成name屬性等於ddlList的select標簽)
$("#ddlList option:selected").text()
二、獲取dropdownlist的value(ddlList為服務器端dropdownlist的ID,生成name屬性等於ddlList的select標簽)
$("#ddlList").val()
三、獲取radiobuttonlist的text(rbtList為服務器端radiobuttonlist的ID,生成name屬性等於rbtList的一組input標簽)
$("input[name='rbtList']:checked+label").text()
四、獲取radiobuttonlist的value(rbtList為服務器端radiobuttonlist的ID,生成name屬性等於rbtList的一組input標簽)
$("input[name='rbtList']:checked").val()