Advertisement
Guest User

jsonp

a guest
Jan 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6.      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  7. </head>
  8. <body>
  9. <!--    <script src="http://220.134.230.161:8000/api/users&callback=getdata"></script>-->
  10.     <script>
  11.        
  12.  $(document).ready(function(){
  13.  
  14.      $.ajax({
  15.          url:"http://220.134.230.161:8000/api/users?callback=?",
  16.          dataType:"jsonp",
  17.          jsonp:"callback",
  18.          success:function(data){
  19.              console.log(data);
  20.          }
  21.      })
  22.  })
  23.     </script>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement