バックボーンのレンダリング機能では、
render: function() {
this.$el.html('<div id="customID"></div>
console.log($('#customID')[0]);
setTimeout(function(){
console.log($('#customID')[0]);
}, 1);
}
最初の console.log は「未定義」を返します...
2 つ目は DOM ノードを返します。
レンダリング機能で DOM をタイムアウトなしで使用できないのはなぜですか?