Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
272 views
in Technique[技术] by (71.8m points)

javascript - Pass a value from Parent to Child (Open) window

How to pass value from parent to child window field. I use window.open("www.google.com");

after popwindow is opened i need to pass/set search value typed in parent window to child window(www.google.com)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Set a reference using the window.open() method:

var childWin = window.open("www.google.com" <etc.>);

Then treat childWin as a whole other window. For example,

childWin.document.getElementById('searchField')

will give you a reference to an element with ID of "searchField". Etc. Rinse and repeat.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...