Показать сообщение отдельно
  #5 (permalink)  
Старый 07.04.2016, 18:03
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,105

failoflife,
<!DOCTYPE html>

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

  <script>
$(function() {
    var $rows = $("#myTable tr");
    $("#rowCount").click(function() {
        alert("Matrix = " + JSON.stringify(matrixArray($rows)))
    });

    function matrixArray(rows) {
        return $.map(rows, function(tr) {
            return [$.map($("input", tr), function(input) {
                return +input.value || 0
            })]
        })
    }
});
  </script>
</head>

<body>
<button id="rowCount">Count 'Em</button>
<br />
<table id="myTable">
  <tr>
    <td>
      <input type="text">
    </td>
    <td>
      <input type="text">
    </td>
    <td>
      <input type="text">
    </td>
  </tr>
  <tr>
    <td>
      <input type="text">
    </td>
    <td>
      <input type="text">
    </td>
    <td>
      <input type="text">
    </td>
  </tr>
  <tr>
    <td>
      <input type="text">
    </td>
    <td>
      <input type="text">
    </td>
    <td>
      <input type="text">
    </td>
  </tr>

</table>

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