「jQuery入門」replaceWith()とreplaceAll()のサンプルコード
1.replaceWith()
JSコード
$(“#testBtn").click(function() {
// replaceWithメソッドで指定
$(“#city").replaceWith('福岡');
});
});
HTMLコード
<p>都市:<span id = “city">大阪</span></p>
<input type="button" id="testBtn" value="テストボタン">
2.replaceAll()
JSコード
$(function() {
$(“#testBtn").click(function() {
// replaceAllメソッドで指定
$('福岡').replaceAll('#city’);
});
});
HTMLコード
<p>都市:<span id = “city">大阪</span></p>
<input type="button" id="testBtn" value="テストボタン">