div
我有一组通过 jQuery 动态加载的 s 的事件处理程序。
$(document).ready(function () {
$('.one span').hover(function () {
$(this).animate({ backgroundColor: '#666666', color: '#DDDDDD', marginRight: 5 }, 250);
}, function () {
$(this).animate({ backgroundColor: '#DDDDDD', color: '#666666', marginRight: 0 }, 250);
});
});
问题是这些事件处理程序没有被触发,我怀疑这可能是因为这些元素$('.one span')
是在页面加载后通过 jQuery 加载的。
在这种情况下我能做什么?我怎样才能对稍后出现的元素进行某种“后期绑定”?