在索引页面的头部,css我打电话
在索引正文页面
function openColorBox(){ $.colorbox({ iframe:true, width:"80%", height:"85%", 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);
现在请告诉我模态的关闭按钮编码,并将返回到相同的索引页
答案 0 :(得分:2)
您可以使用以下代码
$('#cboxClose').click(function(){
parent.$.colorbox.close();
return false;
});
}