如何将表中一行的内容复制到另一个表并添加相同的表

时间:2015-01-19 21:40:03

标签: javascript jquery html5

var Sell_Button = document.getElementById('sellbtn'),
  secondTable = document.getElementById("secondTableBody");

Sell_Button.addEventListener('click', function() {

      var Row = secondTable.insertRow();

      for (var c = 0; c < 2; c += 1) {
        Row.insertCell(c);
      }

      Row.cells[0].innerHTML = this.parentNode.parentNode.cells[0].innerHTML;
      Row.cells[2].innerHTML = this.parentNode.parentNode.cells[1].innerHTML;
  
      //checks to see if the secondTable has a row containing the same name
      for (var f = 0; f < secondTable.rows.length; f += 1) {
        //adds only the sold amount if the second table has a row with the same name
//error            
if (secondTable.rows[f].cells[0].innerText === this.parentNode.parentNode.cells[0].innerText) {
          secondTable.rows[f].cells[1].innerHTML = +this.parentNode.parentNode.cells[2].innerHTML;
          //deletes an extra row that is added at the bottom
          if (secondTable.rows.length > 1) {
            secondTable.deleteRow(secondTable.rows.length - 1);
          }
          //if nothing matched then a new row is added
        } else {
          secondTable.insertRow();
          Row.cells[0].innerHTML = this.parentNode.parentNode.cells[0].innerHTML;
          Row.cells[1].innerHTML = this.parentNode.parentNode.cells[2].innerHTML;
        }
      }
    }
}
<html>

<body>
  <div id="firstTableDiv">
    <table border="1" id="firstTable">
      <thead>
        <th>Item</th>
        <th>Stock</th>
        <th colspan="1">Sold</th>
      </thead>
      <tbody id="firstTableBody">
        <tr>
          <td>Apples</td>
          <td>300</td>
          <td>200</td>
          <td>
            <button id="sellbtn">Sell</button>
          </td>
        </tr>
        <tr>
          <td>Apples</td>
          <td>300</td>
          <td>100</td>
          <td>
            <button id="sellbtn">Sell</button>
          </td>
        </tr>
        <tr>
          <td>Oranges</td>
          <td>400</td>
          <td>300</td>
          <td>
            <button id="sellbtn">Sell</button>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
  </br>

  <div id="secondTableDiv">
    Sold

    <table border="1" id="secondTable">
      <thead>
        <th>Item</th>
        <th>Sold</th>
      </thead>
      <tbody id="secondTableBody">
      </tbody>
    </table>
  </div>
</body>

</html>

好的,这个例子并不是我正在研究的,但它非常相似。唯一的区别是,在我的行中,按钮是由用户动态添加的,并且他插入了详细信息。我想要的是当我按下每一行的按钮(卖出)时,细节(仅限物品和已售出)被复制到第二张表中的一行,并检查第二张表中是否存在相同的物品,如果是,则添加一行中两件物品的售出量。例如,我按下苹果的第一行按钮将上面列出的详细信息复制到第二行中的第二行,然后当我点击第二行的按钮(苹果也是)时,它只会增加销售量并且不会添加第二个苹果行,因为第二个表中已存在苹果行,但是当我单击橙色按钮时,它会生成一个新行,因为橙色行不存在。那么我该如何在JavaScript中执行此操作?我希望我是彻底的,没有任何意义。我不知道为什么代码不在这里工作,但我希望你明白这一点。这段代码完全正常,因为我想要它直到由于某种原因我得到这个错误:当我按下约按钮时,无法读取未定义的属性'innerText'。 6-7次针对if语句,我评论错误。

2 个答案:

答案 0 :(得分:1)

你的意思是:

&#13;
&#13;
$(document).on("click", "#firstTable tr button", function(b) {
    b = $(this).closest("tr");
    var d = $.trim(b.find("td:first").text());
    b = parseFloat($.trim(b.find("td:nth-child(3)").text()));
    var a = $("#secondTable"),
        c = a.find("tr").filter(function(a) {
            return $.trim($(this).find("td:first").text()) == d
        });
    c.length ? (a = c.find("td:nth-child(2)"), c = parseFloat($.trim(a.text())), a.text(b + c)) : (a = $("<tr />").appendTo(a), $("<td />", {
        text: d
    }).appendTo(a), $("<td />", {
        text: b
    }).appendTo(a))
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div id="firstTableDiv">
	<table border="1" id="firstTable">
		<thead>
			<tr>
				<th>Item</th>
				<th>Stock</th>
				<th colspan="1">Sold</th>
			</tr>
		</thead>
		<tbody id="firstTableBody">
			<tr>
				<td>Apples</td>
				<td>300</td>
				<td>200</td>
				<td><button>Sell</button></td>
			</tr>
			<tr>
				<td>Apples</td>
				<td>300</td>
				<td>100</td>
				<td><button>Sell</button></td>
			</tr>
			<tr>
				<td>Oranges</td>
				<td>400</td>
				<td>300</td>
				<td><button>Sell</button></td>
			</tr>
		</tbody>
	</table>
</div>
<br />
<div id="secondTableDiv">
	Sold
	<table border="1" id="secondTable">
		<thead>
			<tr>
				<th>Item</th>
				<th>Sold</th>
			</tr>
		</thead>
		<tbody id="secondTableBody"></tbody>
	</table>
</div>
&#13;
&#13;
&#13;

答案 1 :(得分:1)

这会为所有按钮设置一个点击处理程序。如果第二个表中没有该行,则会创建该行。它设置data-type引用该项目。当有人再次单击sell按钮并且有一行包含数据类型时,行将被更新而不是创建。全部都是用JavaScript编写的。

&#13;
&#13;
var Sell_Button = document.querySelectorAll('.sellbtn'),
  secondTable = document.getElementById("secondTableBody");

Array.prototype.slice.call(Sell_Button).forEach(function(element){

	element.addEventListener('click', function(e) {

		//since the button is an element without children use e.
		var clickedElement = e.target;
		var parentRow = clickedElement.parentNode.parentNode;
		
		//check if second table has a row with data-type
		var rowWithData = secondTable.querySelector("[data-type='"+parentRow.cells[0].childNodes[0].nodeValue+"']");
		if (rowWithData)
		{
			rowWithData.cells[1].innerHTML = parseInt(rowWithData.cells[1].childNodes[0].nodeValue) + parseInt(parentRow.cells[2].childNodes[0].nodeValue);
		}
		else
		{
			var Row = secondTable.insertRow();
            Row.setAttribute("data-type", parentRow.cells[0].childNodes[0].nodeValue);

			for (var c = 0; c < 2; c += 1) {
				Row.insertCell(c);
			}
			Row.cells[0].innerHTML = parentRow.cells[0].childNodes[0].nodeValue;
			Row.cells[1].innerHTML = parentRow.cells[2].childNodes[0].nodeValue;
		}

	});
});
&#13;
<html>

<body>
  <div id="firstTableDiv">
    <table border="1" id="firstTable">
      <thead>
        <th>Item</th>
        <th>Stock</th>
        <th colspan="1">Sold</th>
      </thead>
      <tbody id="firstTableBody">
        <tr>
          <td>Apples</td>
          <td>300</td>
          <td>200</td>
          <td>
            <button class="sellbtn">Sell</button>
          </td>
        </tr>
        <tr>
          <td>Apples</td>
          <td>300</td>
          <td>100</td>
          <td>
            <button class="sellbtn">Sell</button>
          </td>
        </tr>
        <tr>
          <td>Oranges</td>
          <td>400</td>
          <td>300</td>
          <td>
            <button class="sellbtn">Sell</button>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
  </br>

  <div id="secondTableDiv">
    Sold

    <table border="1" id="secondTable">
      <thead>
        <th>Item</th>
        <th>Sold</th>
      </thead>
      <tbody id="secondTableBody">
      </tbody>
    </table>
  </div>
</body>

</html>
&#13;
&#13;
&#13;