答案 0 :(得分:1)
$(document).ready(function(){
$('images').each(function(){
$(this).replaceTag('<img>', true);
});
});
答案 1 :(得分:0)
如果您想要替换现有标签,可以执行以下操作:
$('images').each(function(){
$(this).replaceWith('<img>' + $(this).html() +'</img>')
});