保存按钮上的弹出窗口iframe需要关闭

时间:2014-11-21 08:31:54

标签: php jquery button iframe popup

您好Jquery和php有问题。让我解释。点击链接我在popoup iframe中打开页面,当我想保存表单时,成功页面保留在弹出窗口iframe而不是整页。我在Jquery / javaScrip中不是很好,我问你怎么能这样做?

iframe功能:

 function(data) {
      $("#admin-window").html(data);
      $("#admin-window-content").html("<iframe src='" + url + "' style='width:100%; border:none; min-height:460px'></iframe>");
      $("#admin-window").css("z-index", "999");

      width = parseInt($("#admin-window").css("width"));
      half_width = width/2;
      screen_width = $( window ).width();
      left = (screen_width/2) - half_width;


      left = Math.round(left)+"px";
      $("#admin-window").css("left", left);

      $("#popup-close").click(function (event) {
          $(".block-editor").remove();    
          event.preventDefault();
      });

提前谢谢。

0 个答案:

没有答案