返回到 InfoPath 中的窗体顶部



我在这里找到了这种SharePoint返回页面顶部的方式。有谁知道将其集成到驻留在 SharePoint 上的 InfoPath 表单的方法吗?

我发现使用 jQuery 的工作有限。我从这里下载了.js文件:

jquery-3.1.0.slim.min.js

将其保存到我的 SharePoint 网站,然后将以下内容嵌入到包含 InfoPath Web 部件的页面。

<script src="https://yoursharepointURL.com/SiteAssets/Scripts/jquery-3.1.0.slim.js"></script>
<script type="text/javascript">
function openLinkInSameWindow() {
 $('a[target="_blank"]').removeAttr('target'); 
}
 _spBodyOnLoadFunctionNames.push("openLinkInSameWindow");
</script>  

然后在 InfoPath 表单中,我使用以下 URL 调用了脚本

https://yoursharepointURL.com/SitePages/Page.aspx#top

从那以后一直运作良好!

相关内容

  • 没有找到相关文章

最新更新