我正在使用Widget Factory为我的网站创建一个基本的jQuery幻灯片。
$('#front-page-slideshow .slides-container').slideShow({});
启动小部件后,如何获取启动它的选择器?感谢。
$.widget('DDUI.slideShow', {
options : {
automatic: true, // Whether or not the slideShow is automatic
speed: '3000' // The transition speed of the slides
}, // options
/**
* Constructor
*/
_create : function(){
var caller = ???
// 'caller' should be either string '#front-page-slideshow .slides-container'
// or object '$('#front-page-slideshow .slides-container')'
} // _create
});
答案 0 :(得分:1)