-1

如何更改<footer id="tt"></footer>使用<div id='tt'></div>jQuery 有没有办法轻松更改标签?非常感谢

4

2 回答 2

2

您可以使用replaceWith方法:

$('#tt').replaceWith(function(){
   return '<div id="' + this.id + '"></div>'
})
于 2012-10-31T02:46:28.637 回答
0

您可以使用replaceWith()

var $foot=$('#tt'), html=$foot.html();

$foot.replaceWith( $('<div id="tt">').append(html) )
于 2012-10-31T02:47:08.513 回答