Advertisement
CyberN00b

Untitled

Jan 8th, 2022
859
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <script src="https://code.jquery.com/jquery-3.6.0.js"></script>
  4. <script>
  5.     function send_data() {
  6.         let name = 'Ваня';
  7.         let age = 35;
  8.         let location = 'Москва';
  9.         $.ajax({
  10.             url: 'test.php',
  11.             type: 'POST',
  12.             dataType: 'json',
  13.             data: {
  14.                 func: 'func_data',
  15.                 name: name,
  16.                 age: age,
  17.                 location: location,
  18.             },
  19.             success: function(data){
  20.                alert('Я '+data.name+', мне ' +data.age + ' лет. Мой город: ' +data.location);
  21.             }, error: function(){
  22.                alert('ERROR');
  23.             }
  24.         });
  25.     }
  26. </script>
  27. <head>
  28.     <meta charset="UTF-8">
  29.     <input class="button" type="button" name="registration" value="Регистрация" onclick="send_data();">
  30. </head>
  31. <body>
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement