如果您使用以下方式添加元素:
jQuery(document).ready(function($){
// append new div somewhere
}
如何检查是否单击了新创建的 div(文档准备好后)?因为这似乎不起作用:
jQuery(document).ready(function($){
// append new div somewhere with "test" class
$(".test").click( function(){
// do things
});
}