demo.htm 942 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http://www.w3.org/TR/html4/strict.dtd">
  3. <html lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <title>jQuery Server Plugin</title>
  7. <script type="text/javascript" src='jquery.js'></script>
  8. <script type="text/javascript" src='../jQueryServer.js'></script>
  9. <script type="text/javascript">
  10. jQuery.serverConfig.url = '/phpQuery/jQueryServer/jQueryServer.php';
  11. function demo() {
  12. $.server({
  13. url: document.location.toString(),
  14. dataType: 'json'
  15. })
  16. .find('li')
  17. .client(function(response){
  18. $.each(response, function(k, li){
  19. $('ul').append(li);
  20. });
  21. });
  22. }
  23. $(function(){
  24. $('ul').append('<li>above LIs will be downloaded and appended below in 2 seconds...</li>');
  25. setTimeout(demo, 2000);
  26. });
  27. </script>
  28. </head>
  29. <body>
  30. <div>jQuery Server Plugin demo...</div>
  31. <ul>
  32. <li>test1</li>
  33. <li>test2</li>
  34. <li>test3</li>
  35. </ul>
  36. </body>
  37. </html>