Показать сообщение отдельно
  #5 (permalink)  
Старый 24.11.2014, 18:21
Профессор
Посмотреть профиль Найти все сообщения от krutoy
 
Регистрация: 09.11.2014
Сообщений: 610

<!DOCTYPE HTML>
<html>
  <head><meta charset="windows-1251" /> </head>
  <body>
<input name = "first" />
<input name = "first" />
<input name = "first" />
<br>
<input name = "second" />
<input name = "second" />
<input name = "second" />
<button>push</button>
<script>
  
first=document.getElementsByName("first") 
second=document.getElementsByName("second")

test=function(){
     for(var i=0; i<3; i++){if(first[i].value!=second[i].value) return alert(false)}
     alert(true)
}
document.querySelector("button").onclick=test
</script>
  </body>
</html>
Ответить с цитированием