我正在为登录窗口使用颜色框,成功后,我想将用户重定向到父框架中的 index.php。我遗漏了一些细节,它在颜色框本身中重定向 index.php。我在哪里声明目标的“父”参数?
我正在发布启用颜色框等的代码部分:
打开颜色框的链接:
$(document).ready(function() {
$("a.logmein").colorbox({rel: 'logmein', iframe:true, width:"540", height:"400", onClosed:function(){ location.reload(true); }});
});
检查用户的凭据:
if($totalRows_finduser==0){
echo '<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$.colorbox({href:\'login.php\', iframe:true, transition:"fade", width:"540", height:"400"});
});
</script>';
} else {
$_SESSION['login'] = 1;
// I set the user as logged in, assign the session vars etc
// HOW DO I REDERECT HIM FROM HERE TO PARENT??
}