jQuery replaceメソッドを使用して複数の異なる文字を置き換える
環境
Google Chrome 107.0.5304.88
Windows 10 home 64bit
jQuery 3.6.0
構文
文字列.replace(“置換前文字列1″,"置換後文字列1").replace(“置換前文字列2″,"置換後文字列2")
replaceメソッドを続けて使用して複数の異なる文字を置き換えます。
書式
replace(substr, newSubstr)
引数
substr newSubstr に置き換えられる文字列です。 これは逐次的な文字列として扱われ、正規表現としては解釈されません。 newSubstr (replacement) regexp や substr 引数で指定される部分文字列を置換する文字列です。 数々の特別な置換パターンに対応しています。
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script> $(function(){ // ボタン「置換」のクリックイベント $("#btnchg").click(function() { let str = $("#show").text(); // 複数の異なる文字を置き換る $("#show").text(str.replace("stu","AA").replace("skill","BB")); }); }); </script> </head> <body> <p>目標:<span id="show">study skill</span></p> <input type="button" id="btnchg" value="置換" /> </body> </html>
実行結果
「置換」ボタンを押すと、文字「study skill」を「AAdy BB」に置き換えます。