Показать сообщение отдельно
  #3 (permalink)  
Старый 20.03.2013, 10:48
Аватар для cyber
I am Student
Отправить личное сообщение для cyber Посмотреть профиль Найти все сообщения от cyber
 
Регистрация: 17.12.2011
Сообщений: 4,415

fsb-k, делал быстро, если что пишите
<!DOCTYPE HTML>
<html>
  <head> </head>
  <body>
    
    <div id="conteiner">
      
      <div class="questions">
        
      <input type = "radio" name=q1 onclick="qa.nowRight = 0">128 Mb;<br>
      <input type = "radio" name=q1 onclick="qa.nowRight = 0">327 Mb;<br>
      <input type = "radio" name=q1 onclick="qa.nowRight = 0">452 Mb;<br>
      <input type = "radio" name=q1 onclick="qa.nowRight = 1">622 Mb;<br>
      <input type = "radio" name=q1 onclick="qa.nowRight = 0">842 Mb;<br>
        <input type = "button" class="confirm" value="confirm">
      </div>
      <div class="questions">
        
      <input type = "radio" name=q2 onclick="qa.nowRight = 0">28 Mb;<br>
      <input type = "radio" name=q2 onclick="qa.nowRight = 0">327 Mb;<br>
      <input type = "radio" name=q2 onclick="qa.nowRight = 0">452 Mb;<br>
     <input type = "radio" name=q2 onclick="qa.nowRight = 1">622 Mb;<br>
     <input type = "radio" name=q2 onclick="qa.nowRight = 0">842 Mb;<br>
        <input type = "button" class="confirm" value="confirm">
      
      </div>
    </div>
    
    <script>

      function Tests(_container) {
      
        var i = 0;
        

          
        var qs = document.getElementsByClassName("questions");
        
       
          for(var j = 1, leng = qs.length; j < leng; j++)
                                 qs[j].style.display = "none";
           

        
        _container.onclick = function (e){
        
        var target = e.target || event.scrElement;
        
        if(target.className.indexOf("confirm")  == -1)return;
          
          next();
          
        }
        
        function next(){
        
          qs[i].style.display = "none";
          
          i++;
        
           qs[i].style.display = "";
        }
      
      }
Tests(document.getElementById("conteiner"));


    </script>

  </body>
</html>
__________________
Цитата:
Если ограничения и условия описываются как "коробка", то хитрость в том что бы найти именно коробку... Не думайте о чем то глобальном - найдите коробку.
Ответить с цитированием