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.
<footer id="tt"></footer>jQueryを使用するように変更<div id='tt'></div>する方法タグを簡単に変更する方法はありますか?どうもありがとう
<footer id="tt"></footer>
<div id='tt'></div>
replaceWith次の方法を使用できます。
replaceWith
$('#tt').replaceWith(function(){ return '<div id="' + this.id + '"></div>' })
使用できますreplaceWith()
replaceWith()
var $foot=$('#tt'), html=$foot.html(); $foot.replaceWith( $('<div id="tt">').append(html) )