限制共享点弹出窗口中的附加页眉

发布于 2024-11-06 22:52:22 字数 111 浏览 0 评论 0原文

您好,我在 sharepoint 中添加了额外的 pagehead,它将运行 javascript 函数来显示一些文本。它在所有共享点页面中工作正常,但在共享点弹出窗口中也工作正常。我怎样才能限制它弹出窗口。

hi i have added additionalpagehead in sharepoint which will run a javascript functions to show some texts. It is working fine in all the sharepoint pages but it is working in sharepoint popup window also. How can i restrict it from popup windows.

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

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

发布评论

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

评论(2

孤独患者 2024-11-13 22:52:22

尝试在 PlaceHolderAdditionalPageHead 占位符中使用此代码:

<script type="text/javascript">
var IsDlg = (/[\\?&]IsDlg=([^&#]*)/.test(window.location.href));
if (!IsDlg)
{

//  your javascript code ...

}
</script>

Try to use this code inside PlaceHolderAdditionalPageHead placeholder:

<script type="text/javascript">
var IsDlg = (/[\\?&]IsDlg=([^&#]*)/.test(window.location.href));
if (!IsDlg)
{

//  your javascript code ...

}
</script>
も星光 2024-11-13 22:52:22

亚历克斯的答案的另一种选择是:
您可以向函数添加 if 条件,以便在执行此操作之前测试当前文档是否已加载到 iframe 中(Sharepoint 如何显示其弹出窗口/模式对话框)。

John Chapman 在此处贡献了此代码:

var isInIFrame = (window.location != window.parent.location) ? true : false

An alternative to Alex's answer is this:
You can add an if condition to your function so that it tests if the current document is loaded in a iframe (which how Sharepoint displays its popup window/modal dialog), before doing that is does.

John Chapman contributed this code here:

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