0

HTMLで私が持っている

code exchange org <sup>®</sup>

org の後にスペースがあります。そのスペースを削除する必要があります。それをこのようにする

code exchange org<sup>®</sup>

私が使っているjquery

$(div).each(function(){

$(this).text("org <sup>").replace("org<sup>");


});
4

6 に答える 6

1

このように、変更された値を割り当てる必要があります

$(your div here).each(function(){

this.innerHTML = this.innerHTML.replace(' <sup>','<sup>');

});
于 2013-09-23T07:28:13.420 に答える