简体   繁体   中英

Passing a value from child window to parent

Here is my scenario: i have a parent web page, in my javascript code I open a new window. This new window is a server-side aspx page. This child page needs to save some data in the database, and after saving it returns an ID. Now, I need to pass this ID from the child server page to the parent's javascript.

Essentially I need the child server code to trigger: 1) return the value to the javascript code of the parent page 2) close itself

What would be the acceptable way to do it?

Set a variable in the parent page:

var dbID;

When the DB call returns from the opened window, place this in the opened window's load event (or ready event if using jquery or another framework):

window.opener.dbID = <%= newID %> 
// or whatever your framework's technique is for this :-)
window.close();

You can also call a global function on the parent as well using the same technique.

On "parent" page:

function handleNewDBID(dbID) { alert("lookit me, i got an ID! " + dbID); }

And on the opened window:

window.opener.handleNewDBID(<%=newID%>);

如果您在子窗口中并且假设您的父窗口具有对象childResult

window.opener.childResult = "yourIdHere";

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