Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script src="<?=base_url();?>js/jquery-1.2.6.min.js" type="text/javascript"></script>
  4. <script type="text/javascript">
  5. function bajar(){
  6. $.ajax({
  7. type: "POST",
  8. url: "/buscar/busqueda",
  9. data: "elemento=Maria",
  10.  
  11. success: function(datos){
  12. $("#contenedor").html(datos);
  13. }
  14. });
  15. };
  16. $(document).ready(function(){$("#boton").bind("click", bajar);});
  17. </script>
  18. <title><?=$title;?></title>
  19. </head>
  20. <body>
  21. <!--Comentario en HTML -->
  22. <h1><?=$cabecera;?></h1>
  23. <?=form_open('');?>
  24. <br>
  25. <input type="text" name="elemento" value="<?php echo set_value('elemento'); ?>" size="50" />
  26. <input type="button" id="boton" value="Bajar numeros"/>
  27. <div id="contenedor">
  28.  
  29. <?
  30. if( is_array($users)):
  31. foreach ($users as $row){
  32. echo $row['id'];
  33. }
  34. else:
  35. echo "No results";
  36. endif;
  37. ?>
  38.  
  39. </br></div></BR>
  40. Esta pagina cargo en {elapsed_time} segundos.
  41. </body>
  42. </html>
Add Comment
Please, Sign In to add comment