我正在使用以下插件:
http://flowplayer.org/tools/scrollable.html
在“脚本API”的副标题下-有一个方法如下:
getItems() jQuery将可滚动项作为jQuery对象返回
我的问题是--我如何访问这个对象来获取它的值,比如它当前分配给它的所有可滚动项的id和名称?
谢谢。TT。
发布于 2009-05-23 23:14:23
我想你可以...
$("div.scrollable").scrollable().getItems().each(function(i) {
console.log(this.id);
console.log($(this).attr('id'));
});https://stackoverflow.com/questions/902685
复制相似问题