validate.js 725 B

12345678910111213141516171819202122232425262728293031323334353637
  1. $(document).ready(function() {
  2. show();
  3. function show() {
  4. var max = $('#max').val();
  5. $.ajax({
  6. type: 'POST',
  7. url: 'identify.php',
  8. data: {max: max},
  9. success: function (msg) {
  10. if (msg == 'valid')
  11. {
  12. $('#message').html('<font color="green">Данные совпадают.</font>');
  13. }
  14. else
  15. {
  16. $('#message').html('<font color="red">Данных нет в базе.</font>');
  17. show();
  18. }
  19. }
  20. });
  21. };
  22. setInterval('show()',3000);
  23. });