按类访问时如何动态获取每个元素的innerHTML?
这是一个例子:http: //jsfiddle.net/DwDsL/
只需使用.wrap
:
$(".btnItem").wrap('<div></div>');
$('.btnItem').wrap('<div/>');
足够
如果你想<span>
用<div>
剩余的 html 替换,那么试试
$('.btnItem').replaceWith(function(a, html) {
return '<div>' + html + '</div>';
});
$("span.btnItem").each(function(index) {
$("<div>" + $(this).html() + "</div>").insertAfter($(this));
$(this).remove();
});
function g() {
$(".btnItem").each(function(){
con = $(this).text();
$("<div>" + con + "</div>").insertAfter(".btnItem")
})
$(".btnItem").remove();
}