子頁面如何呼叫 關閉父頁面layer

2022-09-20 23:15:12 字數 746 閱讀 4850

在專案開發中,有時候操作子頁面需要在父頁面層級呼叫layer提示,如下圖

在子頁面執行了某個操作後給出layer提示,整個專案都被禁用,要等載入完成之後在關閉layer提示

html**

<

button

id="prohibit"

style

="display:none"

>

button

>

<

button

id="removeprohibit"

style

="display:none"

>

button

>

j**ascript**

var index = null

; $("#prohibit").click(function

() );

});$("#removeprohibit").click(function

() );

j**ascript**

var _body =window.parent;

if (@(model.errorstate)=== 1)

else

}

如上述**,我們在子頁面可以通過"window.parent"來觸發父頁面的click事件,從而實現在子頁面呼叫/關閉layer提示。

文章**自:快速開發平台– 雲微平台

iframe子頁面和父頁面如何傳值通訊

業務場景,在index.html的主頁面中,我們希望巢狀子頁面,這時候就涉及到父子頁面的通訊問題。以下的都是在同域的基礎上的 1.相互獲取dom元素 1.1 在父頁面獲取子頁面的dom元素 document.getelementbyid iframe id contentwindow.documen...

JQuery 關閉子頁面,重新整理父頁面

注意,這三個方法缺一不可 1,執行完ajax方法以後關閉子頁面,這個方法是寫在子頁面的!if parent null parent.closepopbox null typeof parent.closepopbox function 2,重新整理父頁面,這個方法只需要隨便找個地方放入就行!func...

父頁面開啟子頁面後,子頁面關閉父頁面重新整理

父頁面開啟子頁面後,子頁面關閉父頁面重新整理 下面是很簡單的一種方式,在子頁面重新整理,關閉 window.opener.location.relaod self.close 但是有乙個問題,就是父頁面重新整理的時候有提示框,然後就用了另一種方法 window.opener.refreshdata ...