jQuery replaceメソッドで指定の文字を置き換えるサンプル
環境
Google Chrome 107.0.5304.88
Windows 10 home 64bit
jQuery 3.6.0
構文
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("study","arkgame")); }); }); </script> </head> <body> <p>目標:<span id="show">study skill</span></p> <input type="button" id="btnchg" value="置換" /> </body> </html>
実行結果
「置換」ボタンを押すと、「study skill」を「arkgame skill」になります。