Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 h4 元素更改为 h3 元素。
jQuery有什么简单的可能性吗?
当然还有 .replaceWith 函数。但是我的h3-element的内容一定不能删除。
谢谢!
这应该工作
$("h4").each(function () { var self = $(this); self.replaceWith("<h3>"+self.html() + "</h3>"); });