jQuery / javascript替换标签类型

时间:2010-05-12 01:52:10

标签: javascript jquery tagname

是否有一种简单的方法可以遍历所有td标记并将其更改为th? (等)。

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

8 个答案:

答案 0 :(得分: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 with Qunit tests

答案 1 :(得分: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)创建一个新的元素
3)对于每个td,循环其每个属性
4)将该属性和值添加到新的元素
5)一旦所有属性都到位,在td之后立即将元素添加到DOM,并删除td

修改正常工作:http://jsbin.com/uqofu3/edit

答案 2 :(得分: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

答案 3 :(得分: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]);
}

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

答案 4 :(得分: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();
});

答案 5 :(得分: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)}});

答案 6 :(得分: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);
});

答案 7 :(得分:-1)

document.body.innerHTML=document.body.innerHTML.replace(/(\<td\>)|(\<td\s)|(\<\/td\>)/gi,function(x){return x.replace("td","th");})