我有以下插件「這個」 在jquery的插件回調
var a = $('#test').timetable({
cell_click: openDialog
});
由此cell_click
是
_create:function(){
dayBodyCells.click(function(){
if(!$(this).hasClass('cell-inactive')){
var dic = self.getElementPos(this);
self._trigger('cell_click', null,dic);
}
});
和openDialog
產生的事件是回調函數。在dayBodyCells
的回調函數中,我有this
等於td
元素,這是我的預期。我很好奇 - 爲什麼this
裏面的功能openDialog
而不是指的是#test
?
你是對的。我確實是從自己觸發的,這是小部件本身。 – goh