Показать сообщение отдельно
  #4 (permalink)  
Старый 10.07.2014, 20:24
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,127

Gasherez,

<!DOCTYPE HTML>

<html>

<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <script>
     $(function(){
       var s = $(".select-wishes input:checked"), arr = [];
       s.each(function(indx, el){
         var text = $("[for='"+el.id+"']").text();
         arr.push($.trim(text))});
      alert(arr)
});
  </script>
</head>

<body>
<div class="select-wishes">
 <div class="selected-items"></div>
 <ul>
 <li>
 <label for="with-conditioning">
 <input type="checkbox" name="" id="with-conditioning"> Кондиционер
</label>
 </li>
 <li>
 <label for="with-luggage">
 <input type="checkbox" name="" id="with-luggage" checked="checked"> С собой большой багаж
</label>
 </li>
 <li>
 <label for="with-pet">
 <input type="checkbox" name="" id="with-pet" checked="checked"> С животным
</label>
 </li>
 <li>
 <label for="with-smoking">
 <input type="checkbox" name="" id="with-smoking"> Курить в машине
</label>
 </li>
 </ul>
 </div>

</body>

</html>

Последний раз редактировалось рони, 22.04.2021 в 22:18.
Ответить с цитированием