我在调用onPagerEvent时将元素插入到DOM中。有没有办法在这个事件中使用.live(),以便我可以访问这些新元素?循环插件:http://jquery.malsup.com/cycle/
$("#slides").cycle({
...
onPagerEvent: show_slide(),
...
});
function show_slide() {
// create new object and add to DOM ...
var img = new Image();
img.className = 'new_image';
$('psd').html(img);
}
$('.new_image'); //won't work of course!