1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html> <body> This document contains a frame. <div><iframe src="blank.html"></iframe></div> <script> frames[0].name = window.name + "_child0"; window.onload = function() { opener.postMessage("ready", "*"); }; </script> </body> </html>