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

Categories

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

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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...