replace() で同じ要素内で複数組のテキストを置換 同じ要素内で複数のテキストを変換したい場合のサンプルです。 <script src="./jquery.min.js"></script> <script> $(document).ready(function(){ $('.replace').each(function(){ var txt = $(this).html(); $(this).html(txt .replace(/A/g,'B') .replace(/C/g,'D') .replace(/E/g,'F') ); }); }); </script> 出力結果ですが、元のテキストはこちら。