在共享点页面中找到控件的更快方法编辑,新

发布于 2024-10-15 08:45:26 字数 119 浏览 0 评论 0原文

任何人都可以给我更好的方法来在共享点页面中查找控件。我使用下面的代码在共享点页面中查找控件。 $("nobr:contains('添加另一个承包商')")

可能是更好或更快的方法,如果有的话请告诉我。 谢谢,

Can any body give me better way to find control in sharepoint page.I user below code to find control in sharepoint page.
$("nobr:contains('Add Another Contractor')")

May be better or faster way if any Please tell me.
Thanks,

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

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

发布评论

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

评论(1

累赘 2024-10-22 08:45:26

另一种方法:

  1. 使用此选择器查找表格单元格: table.ms-formtable td.ms-formlabel
  2. 对于每个单元格,获取 nobr(可能使用 .children())

我目前使用prototype.js,但你可以看看我维护的库:SPUtility.js。您没有提到您试图对这些元素做什么,但这可能会有所帮助。

An alternative:

  1. Find the table cells using this selector: table.ms-formtable td.ms-formlabel
  2. For each cell, get the nobr (maybe use .children())

I currently work with prototype.js, but you can take a look at the library I maintain: SPUtility.js. You don't mention what you're attempting to do with the elements, but it may help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文