使用Widget的选择器字符串进行动态事件绑定

时间:2015-09-03 17:11:21

标签: javascript jquery jquery-ui

如何在jQuery UI自定义对象中检索选择器字符串,以便将事件绑定到动态创建的元素?

示例

$.widget( "custom.myCustomWidget", {

    // the constructor
    _create: function() 
    {
        $('body').on(
            'click',
            this.element.selector, // How can I retrieve this?
            function(){ /* Do somthing */ }
        );
    }
});

0 个答案:

没有答案