1234567891011121314151617181920212223242526272829303132 |
- <!doctype html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
- <meta http-equiv="Expires" CONTENT="0">
- <meta http-equiv="Cache-Control" CONTENT="no-cache">
- <meta http-equiv="Pragma" CONTENT="no-cache">
- <title>京东支付</title>
- </head>
- <body style="width:100%;height:100%;text-align: center;">
- <script type="text/javascript">
- window.alert = function(name){
- var iframe = document.createElement("IFRAME");
- iframe.style.display="none";
- iframe.setAttribute("src", 'data:text/plain,');
- document.documentElement.appendChild(iframe);
- window.frames[0].window.alert(name);
- iframe.parentNode.removeChild(iframe);
- }
-
- setTimeout(function(){
- document.getElementById('postFrom').submit();
- },500);
- </script>
- <div>
- {$html}
- </div>
- </body>
- </html>
|