0

我想将 h4 元素更改为 h3 元素。

jQuery有什么简单的可能性吗?

当然还有 .replaceWith 函数。但是我的h3-element的内容一定不能删除。

谢谢!

4

1 回答 1

0

这应该工作

$("h4").each(function () {
    var self = $(this);
    self.replaceWith("<h3>"+self.html() + "</h3>");
});
于 2015-12-13T12:37:49.243 回答