0

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

});
4

1 回答 1

1

对包含 DOM 元素的 jQuery 对象的引用可作为实例的属性使用this.element.

_create方法文档中所述:

没有参数,但是 this.element 和 this.options 已经设置好了。

于 2014-02-07T17:38:30.983 回答