以下は私のコードです。クリックするとどうしてうまくいかないのですか??2つの 'onclick'イベントの使用方法
1:これは段落です。
2:追加されたテキスト
3をクリックしてください:色の赤と別記項目を示さなければなりません。
$(document).ready(function(){
$(".ali").click(function(){
$(this).parent().append("<b class='reza'>Appended text</b>");
});
$(".reza").click(function(){
$(this).append("<li style='color:red'>Appended item</li>");
});
});
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<p><span class="ali"> This is a paragraph. </span> </p>
</body>
</html>
[動的に作成された要素を上の結合イベント?](https://stackoverflow.com/questions/203198/event-binding-on-dynamically-created-elements)の可能性の重複 – Xufox