我怎么能寻找下文所列任何特性的文本。
.css( font-weight , bold );
.css( font-style , italic );
.css( text-decoration , underline );
<b> Some Text </b>
<u> Some Text </u>
<i> Some Text </i>
我想取代案文。
var body = $( body );
var replaced = body.html().replace(text, <span class="hasStyle"> +text+ </span> );
$( body ).html(replaced);