jQuery 循环插件 - 如何使用 .live() 及其 onPagerEvent?
当 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!
I'm inserting elements into the DOM when the onPagerEvent is called. Is there a way to use .live() with this event so that I can access these new elements? Cycle plugin: 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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论