-1

<footer id="tt"></footer>jQueryを使用するように変更<div id='tt'></div>する方法タグを簡単に変更する方法はありますか?どうもありがとう

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 に答える