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.
如果这个元素是用 ajax 上传的,有人知道如何将事件处理程序绑定到元素吗?我有包含在页眉中的 js 文件。由 ajax 更新的页面正文。我已经尝试过live()和bind()方法。
live()
bind()
你需要使用on..
on
$('body').on('click', 'a.ajaxadded', function() { });
文档:http ://api.jquery.com/on/