Показать сообщение отдельно
  #4 (permalink)  
Старый 30.10.2013, 11:34
Аватар для ruslan_mart
Профессор
Отправить личное сообщение для ruslan_mart Посмотреть профиль Найти все сообщения от ruslan_mart
 
Регистрация: 30.04.2012
Сообщений: 3,018

<!DOCTYPE HTML>
<html>
  <head></head>
  <body>
    <div id="inner">
      <input type="text">
      <input type="text">
      <input type="text">
    </div>
    
    <hr>
    
    <div id="url">
      <input type="text">
      <input type="text">
      <input type="text">
    </div>
    
    <hr>
    
    <div id="result">
      <input type="text">
      <input type="text">
      <input type="text">
    </div>
    
    <hr>
    
    <input onclick="Result()" type="button" value="Result">

    <script>
      var elems = ['inner', 'url', 'result'], i;
      for(i in elems) window[elems[i]] = document.getElementById(elems[i]).getElementsByTagName('input');
      
      
      function Result() {
        for(i=0; i<name.length; i++) result[i].value = '<a href="' + url[i].value + '">' + inner[i].value + '</a>';
      }
    </script>
  </body>
</html>
Ответить с цитированием