特定の文字を消したいときに使えるphp!
jqueryで文字の削除をしたいときはこちら〜
こんな便利な方法があったのね。。。
<!-- 特定の文字列を削除 --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script> $(document).ready(function(){ $('.main-box').each(function(){ var txt = $(this).html(); $(this).html(txt .replace(/Aという文字列を/g,'Bにする') .replace(/<br \/>/g,'<br>') //スラッシュのエスケープ文字はこれ .replace(/オフィシャルホームページ/g,'') //差し替え先を空白にすれば削除にできる ); }); }); </script> <!-- 特定の文字列を削除 -->