jQuery Colorbox在表单提交后没有关闭,也没有将我重定向到父页面。如果表格输入数据错误,我想要彩盒。 我直接在colorbox中调用login.html。 我的代码如下。
Html Page One。
<ul>
<li class="call-login-popup"><a href="#">Login</a></li>
</ul>
<script>
$(document).ready(function() {
$(".call-login-popup").colorbox({
iframe: true,
width: 340,
height: 555,
inline: true,
scrolling: true,
href:"login.html",
});
});
</script>
Html Page two login.html
<form id="login-form" action="demo.html" method="post">
<input type="text" placeholder="Email" name="email" /><br/>
<input type="password" placeholder="Password" name="pass" /> <br/>
<input type="submit" value="Login" />
</form>
答案 0 :(得分:0)
点击提交按钮后或完成发送表格
后,您需要关闭彩盒parent.jQuery.fn.colorbox.close();
所以你的代码应该是
<input type="submit" value="Login" onclick="Closepopup()"/>
function Closepopup(){
parent.jQuery.fn.colorbox.close();
}
或
<input type="submit" value="Login" id="closepopup"/>
$('#closepopup').click(function(){
parent.jQuery.fn.colorbox.close();
})