2014-02-05 151 views
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 

}); 

回答

1

對包含DOM元素的jQuery對象的引用可作爲this.element的實例屬性。

由於_create方法文檔中解釋說:

沒有參數,但this.element和this.options已設置。

+0

賓果,謝謝。 –