javascript pass data from parent to iframe
how can i pass my data to iframe? some solution i found on the internet uses form having开发者_运维技巧 the iframe as it's target, but it is not applicable on my case. I need to pass large javascript variable to a form in iframe.
Have you tried parent.your_var
contentWindow.parent.myVariable
精彩评论