天天看点

jq.colorbox 插件

<script src="_script/jquery.colorbox.js"></script>
<link type="text/css" media="screen" rel="stylesheet" href="_script/jquery.colorbox.css" target="_blank" rel="external nofollow"  />
<script type="text/javascript">
$(function() {
    $(".user_x").colorbox({ //指定弹窗标签
    iframe : true,
    innerWidth : 506,
    innerHeight : 580
    });
});
function checkclick(msg) {
    confirm(msg) ? event.returnValue = true : event.returnValue = false;
}
</script>
           

php中退出插件。完成更新父页面操作。

<?php
//$info 页面表单提交返回结果
if(is_numeric($info)){
    exit("<script language='javascript'>alert('添加成功');parent.parent.\$.fn.colorbox.close();</script>");
}else{
    exit("<script language='javascript'>alert('添加失败');parent.location.reload();</script>");
}