pay.html 973 B

1234567891011121314151617181920212223242526272829303132
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
  5. <meta http-equiv="Expires" CONTENT="0">
  6. <meta http-equiv="Cache-Control" CONTENT="no-cache">
  7. <meta http-equiv="Pragma" CONTENT="no-cache">
  8. <title>京东支付</title>
  9. </head>
  10. <body style="width:100%;height:100%;text-align: center;">
  11. <script type="text/javascript">
  12. window.alert = function(name){
  13. var iframe = document.createElement("IFRAME");
  14. iframe.style.display="none";
  15. iframe.setAttribute("src", 'data:text/plain,');
  16. document.documentElement.appendChild(iframe);
  17. window.frames[0].window.alert(name);
  18. iframe.parentNode.removeChild(iframe);
  19. }
  20. setTimeout(function(){
  21. document.getElementById('postFrom').submit();
  22. },500);
  23. </script>
  24. <div>
  25. {$html}
  26. </div>
  27. </body>
  28. </html>