标签:ar sp bs c nbsp text 如何 jquery ca
<f:HiddenField runat="server" ID="cat_id" Text="ssss"/>
var strDate = $("#<%=this.cat_id.ClientID %>").val();
alert(strDate);
这样不行。
var strDate = $(‘input[name="<%=this.cat_id.ClientID %>"]‘).val();
alert(strDate);
这样搞定了!!!
标签:ar sp bs c nbsp text 如何 jquery ca
原文地址:http://www.cnblogs.com/xihong2014/p/4109719.html