Guest User

Untitled

a guest
Jan 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3. $("#formulario").on("submit", function(e){
  4. e.preventDefault();
  5. var cdb = $("#cdb").val();
  6. $.ajax({
  7. url: "cdb.php",
  8. method: "POST",
  9. dataType: "html",
  10. data: cdb
  11. }).done(function(data){
  12. $("#cdb").val("");
  13. $("#cdb").focus();
  14. listar();
  15. }).fail(function(data){
  16. alert("Erro");
  17. });
  18. });
  19. });
  20. </script>
  21.  
  22. <form id="formulario" method="POST" action="" accept-charset="utf-8">
  23. <div>
  24. <?php echo rand(1, 100) ?>
  25. <input id="cdb" type="text" name="cdb" class="validate" required autofocus onfocus="this.value='';">
  26. <button type="submit">GRAVAR</button>
  27. </div>
  28. </form>
  29.  
  30. $cdb = filter_input(INPUT_POST,'cdb');
Add Comment
Please, Sign In to add comment