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

Можно так
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
<input oninput="checkParams();" id="osn_opti_special">
			
<input id="opti_special">
<input id="opti_special">
<input id="opti_special">
<input id="opti_special">
<input id="opti_special">
<input id="opti_special">
<input id="opti_special">
<input id="opti_special">


<script>
function checkParams() {
    var name = document.getElementById('osn_opti_special').value;
     
    document.querySelectorAll('[id="opti_special"]').forEach(function(input) {
      input.value = name;
    });
}
</script>
<style>
input { display: block; }
input:first-child { margin-bottom: 1em; }
</style>

</script>
</body>
</html>


Но правильней будет конечно же с class
Ответить с цитированием