我想知道如何使这段代码工作:http: //jsfiddle.net/LBXVd/2/。它几乎是干净的 jqueryboilerplate,我对这部分代码感兴趣:
Plugin.prototype = {
init: function() {
/// create element <a> with click function
myEl = $('<a/>', {
href: '#',
text: '###',
click: function(e){this._handler();}
});
$('ul').before(myEl);
},
//handler for click events on my <a> element...
_handler: function(el, options) {
alert("my handler called");
}
};
单击创建的元素后如何调用函数_handler?
谢谢!