678872-1.html 555 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. var f1, f2;
  6. function b1()
  7. {
  8. f1 = document.getElementById("f1");
  9. f2 = document.getElementById("f2");
  10. f1.contentWindow.document.write("11");
  11. f1.contentWindow.history.back();
  12. setTimeout(b2, 0);
  13. }
  14. function b2()
  15. {
  16. f2.contentWindow.history.forward();
  17. f2.contentWindow.location.reload();
  18. f1.parentNode.removeChild(f1);
  19. }
  20. </script>
  21. </script>
  22. </head>
  23. <body onload="setTimeout(b1, 0);">
  24. <iframe id="f1" src="data:text/html,1"></iframe>
  25. <iframe id="f2" src="data:text/html,2"></iframe>
  26. </body>
  27. </html>