SimpleModal - 使用关闭按钮关闭 iframe
所以我四处寻找,但找不到明确的答案。我希望我的 iframe 有一个关闭按钮,以便用户可以单击它,而不是使用 ESC 键来关闭 SimpleModal 容器。
我已经尝试了几件事,但似乎没有任何内容被传递到 iframe 中以便能够关闭容器。
So I've searched around and I couldn't find a definitive answer. I want my iframe to have a close button so that users can click it instead of going with the ESC key to close the SimpleModal container.
I've tried several things, but it doesn't seem like anything is being passed into the iframe to be able to close the container.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请尝试以下操作:
源
Try the following:
source
试试这个:
try this:
我也遇到过同样的问题。当我的 iFrame 的“src”属性使用 https 作为协议时,就会发生这种情况。在这种情况下,
parent.$.modal.close();
将不起作用。我解决这个问题的方法是添加 Eric 在 SimpleModal 项目页面上谈到的常用关闭按钮。
将 closeHTML 行添加到模态脚本中:
这会将关闭按钮添加到模态的外部,而不是 iFrame 内部。
然后,您需要在页面上使用此 CSS 来设置关闭按钮的样式:
您可以在此处找到图像:
SimpleModal 演示的 x.png
这是为您提供的完整脚本:
我希望这有帮助!
干杯
保罗
I've had the same problem. It occured when my iFrame's "src" attribute used https as protocol. In that case
parent.$.modal.close();
wouldn't work.What I did to fix it was add the usual close button that Eric talks about on the SimpleModal project page.
Add the closeHTML line to your modal script:
This will add the close button on the outside of the modal, not inside the iFrame.
You'll then need to style the close button, using this CSS on your page:
You can find the image here:
SimpleModal Demo's x.png
Here's a full script for you:
I hope this helps!
Cheers
Paul
我以简单的方式解决了这个问题,但我使用了链接
而不是按钮,但是相同的。
简单地说:class =“simplemodal-close”
例如,
如果你想要一个按钮关闭:
尝试一下,没有函数,没有 onclick="",没有什么。它可以工作
假设您使用的是 Simplemodal: http://www.ericmmartin.com/projects/simplemodal_v101/祝
你好运!
I solve this in a simple way, but I used a link
<a>
instead of a button, but is the same.Just simple put this: class="simplemodal-close"
For example,
if you want a button to close:
<input type="submit" class="simplemodal-close" value="Close" />
Try it, no functions, no onclick="", no nothing. It Works
Assuming you are using the Simplemodal of: http://www.ericmmartin.com/projects/simplemodal_v101/
Good Luck!