如何在jquery中将标签h2更改为其他标签标头

时间:2014-09-23 04:26:41

标签: jquery

jquery中的函数更改标记h2到其他标记头(标记HTML)是什么?如果不存在这个功能,那么我可以使用语法。怎么样?感谢大家 ! 例如:

<h2>DEMO</h2> ---> <h3>DEMO</h3>

2 个答案:

答案 0 :(得分:1)

您可以使用.replaceWith()选择器:

$('h2').replaceWith(function () {
  return $('<h3/>', {html: this.innerHTML});
});

<强> Working Demo

答案 1 :(得分:1)

在jquery中使用 replaceWith()

$("h2").replaceWith(function(i,cont){
return "<h3>"+cont+"</h3>";      // cont will return the inner html
});

DEMO