gpt4 book ai didi

Javascript 对话框窗口关闭

转载 作者:行者123 更新时间:2023-12-03 12:00:55 24 4
gpt4 key购买 nike

我想关闭window.dialog。我打开窗口如下,

window.$('<div align="center" style="width:100%;height:100%;"><iframe src="'+fdt+'" width="100%" height="100%" frameborder="0" scrolling="no"></iframe></div>').dialog({ 
modal: true,
width: 460,
height: 450,
title: "Serial"
});

打开对话框后,当在输入上按 Enter 键时,我想关闭此窗口。请帮助我。

$(document).ready(function(){
$('#stsr').keypress(function(e) {
if(e.keyCode==13){
//I Want to close this window
}
});
});

最佳答案

给 DIV 一个 ID

window.$('<div id="dialog" align="center" style="width:100%;height:100%;"><iframe src="'+fdt+'" width="100%" height="100%" frameborder="0" scrolling="no"></iframe></div>').dialog({ 
modal: true,
width: 460,
height: 450,
title: "Serial"
});

那么您可以稍后引用:

$(document).ready(function(){
$('#stsr').keypress(function(e) {
if(e.keyCode==13){
$("#dialog", window.parent.document).dialog("close");
}
});
});

关于Javascript 对话框窗口关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25419209/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com