有時在我的jQuery腳本中,除非嵌套事件,否則它們不起作用。例如...jQuery嵌套事件
$(selector).click(function(){
//do something such as create an element
$(selector).click(function(){
//do something with the created element
});
});
可以嗎?我一直試圖避免它,因爲它似乎不是正確的做事方式。但有時它不起作用,所以我必須這樣做。
可能值得一提的是對某些事件使用'live()'和事件委託 – 2009-10-04 00:11:41