クラス名をクリックして関数を書きました。それはうまく動作します。同じクラス名のタグを追加すると、そのクラスで関数が機能していません。関数が関数の文字列を追加していません
<script>
$(document).ready(function() {
$("#btn1").click(function(){
$("p").append(" <b class='test'>Appended text</b>.");
});
$(".test").click(function(){
alert(12);
});
});
</script>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<ol>
<li class="test">List item 1</li>
</ol>
<button id="btn1">Append text</button>
[ 'イベントdelegation'](https://learn.jquery.com/events/event-delegation/)についての記事を読む – Rayon
https://jsfiddle.net/rayon_1990/ dLgetr0w/ – Rayon
最終的な解決策はここにあります:https://jsfiddle.net/dLgetr0w/1/ –