Показать сообщение отдельно
  #6 (permalink)  
Старый 30.11.2015, 17:47
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

Сообщение от Stabby
можно ли как-то прогнать через цикл?
<!DOCTYPE HTML>

<html>

<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <style type="text/css">
  .first  {
     width: 300px;
     height: 300px;


  }
  .first div{
    float: left;
     width: 96px;
     height: 96px;
     border: 2px solid rgba(139, 69, 19, 1);
  }
body{
  width: 2000px;
}

  </style>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <script>
     $(function(){
       var s = $(".first p");
       s.text(function(indx, element){
           return Math.random() > .5 ? '0' : 'X'
           });

var ary = document.querySelectorAll('.first p');
ary = [].every.call(ary,function(p) {
     var text = p.textContent || p.innerText;
     return text === 'X' || text === '0';
 });
ary && alert('Ничья');

});



  </script>
</head>

<body>



<div class='first'>
 <div id="1">
     <p></p>
 </div>
 <div id="2">
     <p></p>
 </div>
 <div id="3">
     <p></p>
 </div>
 <div id="4">
     <p></p>
 </div>
 <div id="5">
     <p></p>
 </div>
 <div id="6">
     <p></p>
 </div>
 <div id="7">
     <p></p>
 </div>
 <div id="8">
     <p></p>
 </div>
 <div id="9">
     <p></p>
 </div>
</div>


</body>

</html>
Ответить с цитированием