jquery怎么获取GridView的隐藏列
$(document).ready(function () {
$("#<%=grdCardsCenter.ClientID %> tr").filter(":not(:has(table, th))").find("td:eq('10')").click(function () {
var cardId = $(this).parent().children().eq(0).text();
var needDp = $(this).parent().children().eq(9).text();
});
});
当gridView的第一列(id)隐藏的时候 cardId该怎么获取隐藏列?
坐等。。。
------解决方案--------------------
用的Visible="False"?
这样 在输出时 是不会生成这一列到html页面
------解决方案--------------------隐藏列 可以用 display:none