Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>POST y GET</title>
  8. </head>
  9. <body>
  10. <input type="text" name="nombre">
  11. <button>Enviar</button>
  12. <script src="js/jquery.js"></script>
  13. <script>
  14. $(document).ready(function(){
  15. $("button").click(function(){
  16. //ajax simplificado
  17. /*
  18. $.post('http://localhost/cursos-www/ejercicios-curso-html5/ejercicios-jquery/rest.php',
  19. {nombre:$("input[name='nombre']").val()},
  20. function(data){
  21. alert(data);
  22. });
  23. */
  24. $.get('https://jsonplaceholder.typicode.com/posts',function(data){
  25. console.log(data);
  26. });
  27. });
  28. });
  29. </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement