jQuery replaceAllで要素を置き換える方法

環境
jquery3.6.3
Google Chrome 111.0.5563.65(Official Build)

構文
$(置換後の要素).replaceAll(置換対象)
replaceAllメソッドを使って要素を置換えます。
replaceWithとの違いは、置換対象と置換後の要素が逆です
$('<span id = “ID名">値</span>’).replaceAll('#ID名’);

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
      $("#btnchk").click(function() {
            $('<span id = "city">とうきょう</span>').replaceAll('#city');
      });

});
</script>
</head>
<body>

<p>テスト:<span id = "city">東京</span></p>
<input type="button" id="btnchk" value="変更">
</body>
</html>

実行結果
「変更」ボタンを押すと、文字が東京をとうきょうに変わります

jQuery

Posted by arkgame