从 javascript 确定 SharePoint 上的行 ID

发布于 2024-10-16 19:27:37 字数 148 浏览 0 评论 0原文

使用 Sharepoint DFWP,我在表单上放置了一个按钮(ThumbsUp - Like)。当用户单击此按钮时,它会将“赞”计数器加 1 以记录。我将使用 jquery 来更新行...

我的问题是当我单击按钮时如何获取 rowID。

提前致谢!

Using Sharepoint DFWP, I have put a button on the form (ThumbsUp -- Like). When a user clicks this button, it will add 1 to a Like's counter for the record. I will be using jquery to update the row...

My question is how do I get the rowID when I click the button.

Thanks in Advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

简美 2024-10-23 19:27:37

在处理程序中:

var id = $(this).closest('tr')[0].id;

或者

var id = $(this).closest('tr').attr('id');

或者如果“id”指的是它的索引,请执行以下操作:

var id = $(this).closest('tr')[0].rowIndex;

In the handler:

var id = $(this).closest('tr')[0].id;

or

var id = $(this).closest('tr').attr('id');

or if by "id" you meant its index, do this:

var id = $(this).closest('tr')[0].rowIndex;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文