DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery獲取ASP.NET服務器端控件dropdownlist和radiobuttonlist生成客戶端HTML標簽後的value和text值
jquery獲取ASP.NET服務器端控件dropdownlist和radiobuttonlist生成客戶端HTML標簽後的value和text值
編輯:JQuery特效代碼     
—、獲取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()
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved