Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个单击按钮,我希望它以编辑模式从其 wiki 页面重定向到 xyz 的 wiki 页面。我该怎么做?
如果你打开开发者工具,你会看到 Edit 按钮调用了这个 javascript 函数:
CoreInvoke("PageActionClick", this);
因此,当用户在页面加载时重定向到xyz页面时,您需要以某种方式调用该函数,但第二个参数不能再是“this”,它需要发送编辑按钮对象作为参考。
xyz
$(document).ready(function(){ CoreInvoke("PageActionClick", $("ctl00_PageStateActionButton")); });
阅读更多详情:http ://social.technet.microsoft.com/Forums/en-US/sharepointgenerallegacy/thread/c730ff5f-0ac0-4949-b712-f5e437f23311/