Показать сообщение отдельно
  #9 (permalink)  
Старый 25.01.2018, 19:33
Аватар для j0hnik
Профессор
Отправить личное сообщение для j0hnik Посмотреть профиль Найти все сообщения от j0hnik
 
Регистрация: 01.12.2016
Сообщений: 3,650

<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">

<script>
var i = 0;
document.querySelector('input').focus();
setInterval(function(){ 
document.activeElement.value = i++;
document.activeElement.nextElementSibling.focus();
},500);
</script>


Вот более наглядный пример
Ответить с цитированием