0
我使用窗口小部件工廠爲我的網站創建基本的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
});
賓果,謝謝。 –