jquery 查找 gridview 链接按钮值
我的gridview有几列。第1列是ID,它是一个linkbutton字段,第2列是CustName,它也是一个linkbutton< /strong> 字段,第 3 列是地址,它是普通的单元格文本。这里我有一个问题。当我通过Jquery点击ID按钮时,如何获取第2列的值?
在我的编码中,
$("a.ID").click(function (e) {
var row = $(this).parents("tr:first");
var Desc= row.children("td:eq(2)").text();
var test = row.children("td:eq(1) a").text();???Here error
alert(test);
});
当单击特定的选定行时,我可以获得第 3 列的值。
my gridview got few column.Column 1 is ID which is a linkbutton field , column 2 is CustName which also is a linkbutton field, column 3 is address which is a normal cell text .Here i got a question. How can i get the column 2 value when i click the ID button by Jquery?
Here my coding
$("a.ID").click(function (e) {
var row = $(this).parents("tr:first");
var Desc= row.children("td:eq(2)").text();
var test = row.children("td:eq(1) a").text();???Here error
alert(test);
});
I am able to get the colum 3 value when click the particular selected row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个示例解决方案 http://jsfiddle.net/3hsvQ/
对于此 html:
Here is a sample solution http://jsfiddle.net/3hsvQ/
For this html:
我完全不知道为什么这不起作用,但尝试将其分开:
I don't know outright why that doesn't work, but try separating it:
首先,您可以在 JavaScript 部分中声明函数,如下所示。
您可以从按钮的
OnClientClick
属性调用函数后。因此声明如下。First you can declare function in JavaScript section as below.
After you can call function from
OnClientClick
property of button. So declared as given below.