jquery选择并复制tr

发布于 2024-11-17 03:56:27 字数 404 浏览 0 评论 0原文

我想在 jquery 中复制一个 tr 标签。我有以下内容。这段代码的问题是 $(rowId) 不包含“tr”,只包含其中的内容。因此第一个标签是 而不是 。如何也选择这个元素。

      $('.addLine').click(function () {
          var rowId = $(this).attr('rel');
          var rowId = "#" + rowId;
          var newRow = $(rowId);
          var htmlStr = $(newRow).html(); 
          $(newRow).append(htmlStr);

      });

I wish to duplicate a tr tag in jquery. I have the following. The issue with this code is that
$(rowId) doesn't include the "tr" but just the contents inside it. So the first tag is a <td> not a <tr>. How can select this element also.

      $('.addLine').click(function () {
          var rowId = $(this).attr('rel');
          var rowId = "#" + rowId;
          var newRow = $(rowId);
          var htmlStr = $(newRow).html(); 
          $(newRow).append(htmlStr);

      });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘落散花 2024-11-24 03:56:27

.html() 返回所选元素的内部,您可以使用 .clone() 制作整个元素的副本,然后可以附加该副本。

 $('.addLine').click(function () {
      var rowId = $(this).attr('rel');
      var newRow = $("#"+rowId).clone().appendTo("youTableOrSomething");
  });

.html() returns the inside of the element selected, you can use .clone() to make a copy of the entire element, which you can append.

 $('.addLine').click(function () {
      var rowId = $(this).attr('rel');
      var newRow = $("#"+rowId).clone().appendTo("youTableOrSomething");
  });
我偏爱纯白色 2024-11-24 03:56:27

试试这个

$('.addLine').click(function () {
          var rowId = $(this).attr('rel');
          var rowId = "#" + rowId;
          var newRow = $(rowId).parent();
          var htmlStr = $(newRow).html(); 
          $(newRow).append(htmlStr);

});

Try this one

$('.addLine').click(function () {
          var rowId = $(this).attr('rel');
          var rowId = "#" + rowId;
          var newRow = $(rowId).parent();
          var htmlStr = $(newRow).html(); 
          $(newRow).append(htmlStr);

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文