我对 jquery 有疑问。假设我在 jquery 中有 2 个 div,
<div id='1'> //static div
</div>
<div id='2'> //dynamic div
</div>
静态 div 始终存在于文档中,但当我们单击静态 div 时,动态 div 会切换。现在我想要在动态 div 上放置一个事件,例如:
$(document).on("show", "#2", {}, function() {
alert("div 2 present");
});
这样当文档中存在动态 div 时我可以做一些事情。我怎样才能做到这一点 ?