@axis
bind/trigger 不是讓你用來處理本來就有做好的 helper (比方說您舉的 click event)
想像一下你今天可能做了一個自己想像一下你今天可能做了一個自己的 UI,
比方說是個 dialog,當 dialog 關閉時你可能想用一個事件來描述它或是處理之。
這時候你也許就會想要自己讓某些物件 bind 住 ‘onDialogClosed’ 的 event,
這樣等你關閉 dialog 時,就可以 trigger 自己定義出來的這個 event。
(事實上在 jQuery UI 裡的 dialog 大概就是這樣的概念作的 :p)