21

有没有一种简单的方法可以遍历所有 td 标签并将它们更改为 th?(ETC)。

我目前的方法是用 th 包装它们,然后删除 td,但随后我会丢失其他属性等。

4

7 回答 7

24

jQuery.replaceTagName

下面是一个替换 DOM 元素标签名的 jQuery 插件。

资源

(function($) {
    $.fn.replaceTagName = function(replaceWith) {
        var tags = [],
            i    = this.length;
        while (i--) {
            var newElement = document.createElement(replaceWith),
                thisi      = this[i],
                thisia     = thisi.attributes;
            for (var a = thisia.length - 1; a >= 0; a--) {
                var attrib = thisia[a];
                newElement.setAttribute(attrib.name, attrib.value);
            };
            newElement.innerHTML = thisi.innerHTML;
            $(thisi).after(newElement).remove();
            tags[i] = newElement;
        }
        return $(tags);
    };
})(window.jQuery);

缩小来源

(function(e){e.fn.replaceTagName=function(t){var n=[],r=this.length;while(r--){var i=document.createElement(t),s=this[r],o=s.attributes;for(var u=o.length-1;u>=0;u--){var a=o[u];i.setAttribute(a.name,a.value)}i.innerHTML=s.innerHTML;e(s).after(i).remove();n[r]=i}return e(n)}})(window.jQuery);

用法

在 jQuery 之后在您的 javascript 中包含上述缩小的源代码。

然后你可以像这样使用插件:

$('div').replaceTagName('span'); // replace all divs with spans

或者在你的情况下:

$('td').replaceTagName('th');

jQuery 选择器按预期工作

$('.replace_us').replaceTagName('span'); // replace all elements with "replace_us" class with spans
$('#replace_me').replaceTagName('div'); // replace the element with the id "replace_me"

更多资源

jsFiddle 与 Qunit 测试

于 2012-02-27T16:14:23.457 回答
16

完全未经测试,但试一试:

$("td").each(function(index) {
  var thisTD = this;
  var newElement = $("<th></th>");
  $.each(this.attributes, function(index) {
    $(newElement).attr(thisTD.attributes[index].name, thisTD.attributes[index].value);
  });
  $(this).after(newElement).remove();
});

我一直在看着它,我想不出它不起作用的原因!

1) 遍历每个 td 元素
2) 创建一个新 的 td 元素
3) 为每个 td 循环遍历其每个属性
4) 将该属性和值添加到新的 th 元素
5) 一旦所有属性都到位,添加在 td 之后立即将元素添加到 DOM,并删除 td

编辑:工作正常:http: //jsbin.com/uqofu3/edit

于 2010-05-12T02:23:56.620 回答
5
$("td").each(function() {
  var tmp = $('<div/>').append($(this).clone(true)).html().replace(/td/i,'th');
  $(this).after(tmp).remove();
});

或纯 DOM

function replaceElm(oldTagName, newTagName, targetElm) {
  var target = targetElm || window.document;
  var allFound = target.getElementsByTagName(oldTagName);
  for (var i=0; i<allFound.length; i++) {
    var tmp = document.createElement(newTagName);
    for (var k=0; k<allFound[i].attributes.length; k++) {
      var name = allFound[i].attributes[k].name;
      var val = allFound[i].attributes[k].value;
      tmp.setAttribute(name,val);
    }
    tmp.innerHTML = allFound[i].innerHTML;
    allFound[i].parentNode.insertBefore(tmp, allFound[i]);
    allFound[i].parentNode.removeChild(allFound[i]);
  }
}

replaceElm('td','th',document.getElementsByTagName('table')[0]);

DOM 总是更快:http: //jsperf.com/replace-tag-names

于 2011-07-01T14:26:45.450 回答
3

这可能有效,但我尚未对其进行广泛测试:

var tds = document.getElementsByTagName("td");
while(tds[0]){
    var t = document.createElement("th");
    var a = tds[0].attributes;
    for(var i=0;i<a.length;i++) t.setAttribute(a[i].nodeName,a[i].nodeValue);
    t.innerHTML = tds[0].innerHTML;
    tds[0].parentNode.insertBefore(t,tds[0]);
    tds[0].parentNode.removeChild(tds[0]);
}

我希望它在某种程度上有所帮助。

于 2010-05-12T02:20:52.163 回答
0

好吧,这个问题已经很老了,但这无论如何都会有所帮助:唯一实际按预期工作的 jQuery 插件(您不能在另一个中重用返回的对象,例如添加属性):

jQuery.fn.extend({
    replaceTagName: function(replaceWith) {
        var tags=[];
        this.each(function(i,oldTag) {
            var $oldTag=$(oldTag);
            var $newTag=$($("<div />").append($oldTag.clone(true)).html().replace(new RegExp("^<"+$oldTag.prop("tagName"),"i"),"<"+replaceWith));
            $oldTag.after($newTag).remove();
            tags.push($newTag.get(0));
        });

        return $(tags);
    }
});

除了基本的$("td").replaceTagName("th");,您还可以链接调用,例如$("td").replaceTagName("th").attr("title","test");

缩小版:

jQuery.fn.extend({replaceTagName:function(a){var b=[];this.each(function(d,c){var e=$(c);var f=$($("<div />").append(e.clone(true)).html().replace(new RegExp("^<"+e.prop("tagName"),"i"),"<"+a));e.after(f).remove();b.push(f.get(0))});return $(b)}});
于 2014-07-13T17:07:51.750 回答
0

对@GlenCrawford 的回答稍加补充,以保留带有以下行的内部文本:

newElement.text($(value).text());

现在都在一起了:

$("td").each(function(index) {
  var thisTD = this;
  var newElement = $("<th></th>");
  newElement.text($(value).text());
  $.each(this.attributes, function(index) {
    $(newElement).attr(thisTD.attributes[index].name, thisTD.attributes[index].value);
  });
  $(this).after(newElement).remove();
});
于 2011-11-08T19:12:02.037 回答
0

这比@GlenCrawford 的答案更简洁,并且还复制了被替换元素的子元素。

$('td').each(function(){
    var newElem = $('<th></th>', {html: $(this).html()});
    $.each(this.attributes, function() {
        newElem.attr(this.name, this.value);
    });
    $(this).replaceWith(newElem);
});
于 2015-05-04T10:40:46.817 回答