提交后关闭ColorBox iFrame

diE*_*cho 18 iframe jquery colorbox

我正在使用jQuery ColorBox来显示购物车项目.当用户在iFrame中输入数量(用colorbox打开)并单击提交按钮时,我想要关闭iFrame并自动刷新主窗口(父窗口).

我的意思是在iFrame上提交数据后我想要两件事:

  1. iFrame自动关闭.
  2. 父窗口自动刷新.

请帮帮我.

nik*_*nik 36

在打开iframe时在父窗口上使用它:

$(document).ready(function(){
    $(".chpic").colorbox({width:"80%", height:"80%", iframe:true, 
        onClosed:function(){ location.reload(true); } });
});
Run Code Online (Sandbox Code Playgroud)

这将关闭iframe页面中的iframe:

parent.$.fn.colorbox.close();
Run Code Online (Sandbox Code Playgroud)