简体   繁体   English

Highslide Autoclose iframe弹出窗口

[英]Highslide Autoclose iframe popup

this a related question to this question 14591396 Can I autoclose the iframe popup after a submit has been pressed in 3 seconds? 这是一个与此问题相关的问题14591396我可以在3秒内按下提交后自动关闭 iframe弹出窗口吗?

Regards, Toby 此致,托比

Yes you can, see http://highslide.com/forum/viewtopic.php?f=4&t=3768 . 是的,你可以,参见http://highslide.com/forum/viewtopic.php?f=4&t=3768

The only difference would be that you start the timeout when the user submits the form. 唯一的区别是您在用户提交表单时启动超时。

myForm.onsubmit = function () {
   setTimeout(function () {
      try {
         parent.window.hs.getExpander().close();
      } catch (e) {}
   }, 3000);
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM