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

rodiony4,
<!DOCTYPE html>

<html>
<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <style type="text/css">
  </style>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

  <script>
$(function() {
  $(".btn").on("click", function() {
  $(".hid").filter(function() {
  return $(".decode",this).text()
}).show()
})
});
  </script>
</head>

<body>
<style type="text/css">
.hid {display:none;}
</style>
<input type="button" value="добавить/удалить текст"  class="btn">
<br>
<table border="1" cellspacing="0" cellpadding="0">
<tr class="hid">
 <td>Марка</td>
 <td id="marka_decode" class="decode"></td>
</tr>
<tr class="hid">
 <td>Модель</td>
 <td id="typeGlass_decode" class="decode">test</td>
</tr>
<tr class="hid">
 <td>Цвет</td>
 <td id="colorGlass_decode" class="decode"></td>
</tr>
</table>


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