Guest User

Untitled

a guest
Jan 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. echo 'Hello'
  3. ?>
  4. <script src="jquery.js"></script>
  5. <script>
  6.  
  7. $(function (){
  8.  
  9. var id=10;
  10. $.ajax({
  11.  
  12. url: 'jquery.php',
  13.  
  14. data: { 'id' : id}, //send id
  15.  
  16. success: function(data) {
  17. $('#stu_name').val(data.name);
  18. },
  19. dataType: 'json' //also can be xml
  20.  
  21. });
  22.  
  23.  
  24. })
  25. </script>
  26.  
  27. <form action='jquery.php' method='GET'>
  28. ID: <input type='text' name='id'>
  29. Name:<input type='text' name='stu_name'>
  30. </form>
Add Comment
Please, Sign In to add comment