クラスでアクセスするときに各要素のinnerHTMLを動的に取得する方法は?
例を次に示します: http://jsfiddle.net/DwDsL/
使用するだけ.wrap
です:
$(".btnItem").wrap('<div></div>');
$('.btnItem').wrap('<div/>');
十分です
残りのhtmlに置き換えたい場合は、試し<span>
てください<div>
$('.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();
}