简体   繁体   中英

how to refresh parent from child window in php

I had opened a popup window from a modal now I need to refresh the page where my modal is by closing popup window or by a close button i had tried writing some codes i found here but not working some of my codes are

 //this is not working function closeAndRefresh(){ opener.location.reload(); window.close(); } 

Call below function on onClose popup/onclick close button

function closeAndRefresh() {
    location.reload();
}
function closeAndRefresh() {
    window.top.location.reload();
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM