ホームページ  >  記事  >  バックエンド開発  >  PHP送信フォームのレイヤーポップアップiframeを閉じる方法を説明する例

PHP送信フォームのレイヤーポップアップiframeを閉じる方法を説明する例

coldplay.xixi
coldplay.xixi転載
2020-08-14 17:15:073254ブラウズ

PHP送信フォームのレイヤーポップアップiframeを閉じる方法を説明する例

非常に使いやすいフロントエンド ポップアップ プラグインの紹介:

layer 公式 Web サイトのアドレス: http://layer.layui.com/

公式 API によると: Layer の iframe ポップアップ ウィンドウ

//iframe层-父子操作
layer.open({ 
 type: 2, 
 area: ['700px', '530px'], 
 fix: false, //不固定 
 maxmin: true, 
 content: 'test/iframe.html'
});

こちらPHP 開発を例として、フォームの送信後にレイヤーのポップアップ ウィンドウを自動的に閉じる

(1) レイヤー編集ボックスをポップアップします:

function edit(id){
 if(id==null||id==''||id=='undefined'){
 alert('操作编号为空,请联系管理员');
 }
 
 layer.open({
  type: 2,
  area: ['700px', '530px'],
  fix: false, //不固定
  maxmin: true,
  content: 'index.php?m=content&c=meiti&a=edit_paiqi&id='+id
 });
}

(2) ページのメイン コードを編集します

<input name="dosubmit" type="submit" id="dosubmit" value="提交" class="button" >

(3) PHP はバックグラウンドでデータを保存し、レイヤー ウィンドウを閉じるメソッドを指します

public function edit_config_paiqi(){
		$id = trim($_REQUEST[&#39;id&#39;]);
		$paiqi_db = pc_base::load_model(&#39;paiqi_config_model&#39;);
		if($_REQUEST[&#39;dosubmit&#39;]){
			$insertinfo = array();
			$insertinfo[&#39;catid&#39;] = trim($_POST[&#39;catid&#39;]);
			$insertinfo[&#39;meitiid&#39;] = trim($_POST[&#39;meitiid&#39;]);
			$insertinfo[&#39;title&#39;] = trim($_POST[&#39;title&#39;]);	
			$insertinfo[&#39;meitizhuname&#39;] = trim($_POST[&#39;meitizhuname&#39;]);
			$insertinfo[&#39;meitizhuid&#39;] = trim($_POST[&#39;meitizhuid&#39;]);
			$insertinfo[&#39;createtime&#39;] = SYS_TIME;
			$insertinfo[&#39;saturation&#39;] = trim($_POST[&#39;saturation&#39;]);
			$datas = $paiqi_db->update($insertinfo,array("id"=>$id));
			if($datas){
				<span style="color:#ff0000;">showmessage(L(&#39;operation_success&#39;),&#39;?m=content&c=meiti&a=closewindow&#39;);//保存成功指向关闭窗口方法</span>
			}
		}else{
			$datas = $paiqi_db->select(array("id"=>$id));
			$template = "edit_config_paiqi";
			include $this->admin_tpl($template);
		}
	}
	/**
	 * 关闭layer层
	 */
	public function closewindow(){
		$template = "close_layer";
		include $this->admin_tpl($template);
	}

(4) ウィンドウを閉じて、親ウィンドウ ページのキー コードを更新します

$(function(){
 parent.location.reload();//刷新父窗口 
 parent.layer.closeAll();//关闭所有layer窗口
});

注: Thisページは、レイヤー メソッドを使用するためにレイヤーに必要な JS ライブラリをロードする必要があります。

関連学習の推奨事項:

phpprogramming(ビデオ)

以上がPHP送信フォームのレイヤーポップアップiframeを閉じる方法を説明する例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はjb51.netで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。