ページにHTMLを挿入する別のコードを聞きたいです。私はそのコードを制御していないので、制御できず.trigger('custom_event')
、$(document).on('custom_event')
さらに、リッスンしたい挿入されたdivは、挿入されたhtml内にネストされています。
これが私が今持っているものです:
$(document).on('DOMNodeInsertedIntoDocument', "#inserted", function () {
console.log("Inserted into document:", $(this));
});
$(document).ready(function () {
var new_node = $('<div><div id="inserted">New Div</div></div>');
$("body").append(new_node);
});
イベントがトリガーされないのはなぜですか?