Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含在 UpdatePanel 中的列表视图,它显示来自线程的评论。更新面板是这样的,当用户提交新评论时,列表会重新绑定以反映新评论,而无需回发。我想要做的是在重新绑定后获取最后一个评论列表项,并对其应用 jquery-ui 效果,这将使其脉动几次。我不完全确定如何或是否可以做到这一点。有任何想法吗?
尝试
$("containername:last-child").animate();
其中 containername 是包含列表视图的容器的 id,而 .animate() 是您的 jquery-ui 效果。