gpt4 book ai didi

html - 我想在我的弹出窗口中添加关闭按钮

转载 作者:行者123 更新时间:2023-11-28 04:49:32 25 4
gpt4 key购买 nike

我在 enquiry.html 页面打开基本页面后 10 秒调用了一个 Colorbox 页面名称 enquiry.html 我添加了一个关闭按钮但它不起作用看看我的代码

在基页的头部

<link rel="stylesheet" href="http://www.jacklmoore.com/colorbox/example1/colorbox.css" />

在基页正文中

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" async></script> 

<script src="http://www.jacklmoore.com/colorbox/jquery.colorbox.js" async></script>
<script>
function openColorBox(){
$.colorbox({
iframe:true,
width:"90%",
height:"90%",
href: "enquiry.html",
onLoad: function() {
$('#cboxClose').remove();
setTimeout(function(){
$(window).colorbox.close();
}, 250000)
}
});
}
function countDown(){
seconds--
$("#seconds").text(seconds);
if (seconds === 0){
openColorBox();
clearInterval(i);
}
}
var seconds = 10,
i = setInterval(countDown, 1000);
</script>

在查询.html页面

<input type="button" value="close" onclick=" $(window).colorbox.close()">
<form name="form1" method="post" action="">
<p class="close">&nbsp;</p>
</form>

但是点击关闭按钮并没有关闭

请帮忙提前致谢

最佳答案

你应该尝试使用 $.colorbox.close() 来关闭 colorbox 弹出窗口

有关更多详细信息,请参阅此页面 http://www.jacklmoore.com/colorbox/

关于html - 我想在我的弹出窗口中添加关闭按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40788206/

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