iframe弹出窗口没有关闭逃生

iframe弹出窗口没有关闭逃生

本文介绍了iframe弹出窗口没有关闭逃生的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好先生,

i为逃生时关闭iframe弹出写的脚本

iframe id =createproductframeID

iframe modal id =ShowCreateProduct

父表单textbox id =ItemCode

 $( #createproductframeID)。ready(function(){
setTimeout(function(){
$(' #createproductframeID')。contents()。find(' body')。keyup(function(e){
if (e.keyCode == 27 ){
$( #ShowCreateProduct)。modal( hide);
$( 。#ItemCode)聚焦();
}
});
}, 150 );
});



这只工作一次

如果我停留在弹出窗口的时间不工作/不关闭

我的意思是它的工作有时或不工作

大部分时间不起作用

给出一个解决方案......

谢谢提前。

解决方案




hello sir,
i wrote script for close iframe popup on escape
iframe id= "createproductframeID"
iframe modal id = "ShowCreateProduct"
parent form textbox id = "ItemCode"

$("#createproductframeID").ready(function () {
       setTimeout(function () {
           $('#createproductframeID').contents().find('body').keyup(function (e) {
               if (e.keyCode == 27) {
                   $("#ShowCreateProduct").modal("hide");
                   $("#ItemCode").focus();
               }
           });
       }, 150);
   });


this only work one time
if i stay in popup for mor time its not worked/not close
my means its work sometime or not work
mostly it not work
give a solution...
thanks in advance.

解决方案




这篇关于iframe弹出窗口没有关闭逃生的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 17:58