h5_userRechargeFinish.html 335 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. </head>
  6. <body>
  7. <form style="display: none" name="form1" action="{$url}" method='post' >
  8. {volist name="param" id="vo"}
  9. <input name="{$key}" value="{$vo}" type="text">
  10. {/volist}
  11. <input type="submit">
  12. </form>
  13. <script>
  14. document.form1.submit();
  15. </script>
  16. </body>
  17. </html>