我正在尝试访问已使用 .html 插入的类元素。当我通过单击事件在函数中调用它时,它可以工作,但是当我直接调用它时,它没有......任何想法?
$("#textarea).html("<div>Lorem ipusum<span class='note-content'>Note text</span>Lorem ipusum</div>");
function collapseNotes() {
$(".note-content").animate({
width:"50px",
opacity: ".3",
});
}
//this works
$("#button").click(function() {
collapseNotes();
});
//this doesn't work
collapseNotes();