使用 jQuery 更改 html 元素的类型
Change the type of an html-element with jQuery
我想将 h4 元素更改为 h3 元素。
jQuery有什么简单的可能性吗?
当然还有.replaceWith 功能。但是我的h3元素的内容一定不能删
谢谢!
这应该有效
$("h4").each(function () {
var self = $(this);
self.replaceWith("<h3>"+self.html() + "</h3>");
});
我想将 h4 元素更改为 h3 元素。
jQuery有什么简单的可能性吗?
当然还有.replaceWith 功能。但是我的h3元素的内容一定不能删
谢谢!
这应该有效
$("h4").each(function () {
var self = $(this);
self.replaceWith("<h3>"+self.html() + "</h3>");
});