Guest User

Untitled

a guest
Dec 11th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <input type="button" value="Guardar" id="btn_save">
  2.  
  3. var var_1 = 'a',
  4. var_2 = 'b',
  5. var_3 = 'c',
  6. var_4 = 'd';
  7.  
  8. $(function() {
  9.  
  10. $('#btn_save'.on('click', function() {
  11.  
  12. $.post('procesarDatos.php', {
  13. "var_1": var_1,
  14. "var_2": var_2,
  15. "var_3": var_3,
  16. "var_4": var_4
  17. },function(data) {
  18. console.log('procesamiento finalizado', data);
  19. });
  20. })
  21.  
  22. })
Add Comment
Please, Sign In to add comment