You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
499 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <script src="/public/js/comon/jquery-1.7.2.min.js" type="text/javascript"></script>
  8. <body>
  9. <div>
  10. <input type="text" id="rand"/>
  11. <input type="button" onclick="getRand();"/>
  12. </div>
  13. </body>
  14. <script type="text/javascript">
  15. function getRand() {
  16. var url = '/zz/nzftest/getRand'
  17. $.post(url, '', function (json) {
  18. $('#rand').val(json);
  19. })
  20. }
  21. </script>
  22. </html>