12345678910111213141516171819202122232425262728293031323334353637 |
- $(document).ready(function() {
- show();
- function show() {
- var max = $('#max').val();
- $.ajax({
- type: 'POST',
- url: 'identify.php',
- data: {max: max},
- success: function (msg) {
- if (msg == 'valid')
- {
- $('#message').html('<font color="green">Данные совпадают.</font>');
- }
- else
- {
- $('#message').html('<font color="red">Данных нет в базе.</font>');
- show();
- }
- }
- });
- };
- setInterval('show()',3000);
- });
|