jqModal 取消从 Iframe 打开但显示在父窗口中的警报框

发布于 2024-12-18 05:02:45 字数 243 浏览 1 评论 0原文

我有一个带有 iFrame 的网页。我可以完全访问父窗口和 iFrame 页面。在 iFrame 中,我有一个 jqModal 取消框,当用户输入一些无效输入时会显示该框。 我的问题是当 jqModal 取消框被触发时,只有 iFrame 内部的内容被着色,并且消息框滚动位置是 iFrame 的滚动位置。

我正在寻找一种解决方案,当触发 jqModal 取消框时,整个父窗口都会着色,并且消息框的滚动位置使用父窗口的滚动位置。

谢谢大家。

I have a web page that has an iFrame. I have full access to both parent window and the iFrame page. In the iFrame, I have a jqModal cancel box that is shown when user input some invalid input.
My problem is when the jqModal cancel box is triggered, only content inside of iFrame is tinted, and the message box scrolling position is iFrame's scrolling position.

I am looking for a solution that when jqModal cancel box is triggered, the whole parent window is tinted and the message box's scrolling position is using parent window's scrolling position.

Thank you all.

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

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

发布评论

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

评论(1

征棹 2024-12-25 05:02:45

您必须将 jqmodal 放在父页面而不是子页面(位于 iframe 中)中,然后您将必须从 iframe 调用 jqmdal。例如,
父级:

<script type="text/javascript">
var myGlobalObject = {};
myGlobalObject.LoadJqModal = function(){
  $("selector").jqModal();      
};
</script>

iframe:

<script type="text/javascript">
 function LoadJqModal()
 {
   parent.myGlobalObject.LoadJqModal();
 }
</script>

You must put jqmodal in parent page not in child page(loded in iframe) then you will have to call jqmdal from iframe. For Example,
Parent:

<script type="text/javascript">
var myGlobalObject = {};
myGlobalObject.LoadJqModal = function(){
  $("selector").jqModal();      
};
</script>

Iframe:

<script type="text/javascript">
 function LoadJqModal()
 {
   parent.myGlobalObject.LoadJqModal();
 }
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文