私のアプリケーションでは、ユーザーがオブジェクトを DOM に追加/削除できます。(図形をクリックして追加し、追加した図形をクリックして削除します。)
これは正しく機能しますが、これらの追加された形状にアクセスして操作できるようにしたいと考えています。
(試行) nth-child をループする
for(i=0; i<this.shape.length; i++) {
$('#selected_shape_table:nth-child('+i+')').html("test");
}
HTML
<table id="selected_shape_table">
</table>
(もともとテーブルに形状を追加)
$('.shape').click(function() {
var typeOfShape = $(this).attr('id');
$('#selected_shape_table').append('<td><div id="' + typeOfShape + '" class=selected_shape"> + typeOfShape + '</div></td>');
});