我正在使用 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
});