用户控制下拉列表使用javascript从添加的页面中进行选择

时间:2013-05-17 20:57:01

标签: jquery asp.net user-controls

我想从页面中选择用户控件下拉列表项目。当我尝试获取dropdownlist id时,它不会返回正确的ID。你知道我可以获得dropdownlist id吗?

var e = $("#<%=ddlCategory.ClientID%> option:selected").val();

                 alert(e);
 <blogControl:UCCategory  ID="ddlCategory" runat="server"  />

1 个答案:

答案 0 :(得分:1)

我解决了这个问题,使用这段代码,

<强> C#

public string GetCategoryClientID()
{
    return   ddlCategory.ClientId;
} 

<强>的js

var e = document.getElementById("<%=GetCategoryClientID() %>");
alert(e.options[e.selectedIndex].value);