如何在jQuery UI自定义对象中检索选择器字符串,以便将事件绑定到动态创建的元素?
示例:
$.widget( "custom.myCustomWidget", {
// the constructor
_create: function()
{
$('body').on(
'click',
this.element.selector, // How can I retrieve this?
function(){ /* Do somthing */ }
);
}
});