如何将<footer id="tt"></footer>
更改为<div id='tt'></div>
使用jQuery
有没有办法轻松更改标签?
非常感谢
答案 0 :(得分:2)
您可以使用replaceWith
方法:
$('#tt').replaceWith(function(){
return '<div id="' + this.id + '"></div>'
})
答案 1 :(得分:0)
您可以使用replaceWith()
var $foot=$('#tt'), html=$foot.html();
$foot.replaceWith( $('<div id="tt">').append(html) )