我有一个像这样的隐藏字段
<asp:HiddenField ID="hfprdid" value="hooray" runat="server" />
我试图从像这样的jquery文件中访问它的值
alert($("#'<%=hfprdid.ClientID %>'").value);
但是会抛出这样的错误
Error: Error: Syntax error, unrecognized expression: #'<%=hfprdid.ClientID %>'
答案 0 :(得分:1)
尝试删除双引号并更改为单引号
alert($('#<%= hfprdid.ClientID %>').value);
答案 1 :(得分:1)
尝试:
alert($("#<%= hfprdid.ClientID %>").val());