test.html 754 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  7. </head>
  8. <body>
  9. <h5>1234</h5>
  10. <script>
  11. $(function () {
  12. var url = 'http://192.168.74.1:9000/getUserListInfo';//获取
  13. var postdata = {};
  14. $.post(url, postdata, function (result) {
  15. var JSON = eval('(' + result + ')');
  16. if(JSON.code == 0){
  17. toastr.success('修改成功','提示',opts);
  18. initDatatable();
  19. }else{
  20. console.log(JSON);
  21. toastr.warning(JSON.memo,'提示',opts);
  22. }
  23. });
  24. })
  25. </script>
  26. </body>
  27. </html>