我有以下的jQuery的觸發事件的jQuery:在頁面加載
// change the number of finished and missing assets
$('.add-requirements .overall-status .status-dropdown li').live('click', function() {
var remaining_titles = $('.item-section.finished').length;
$('.add-requirements .remaining-titles').text(remaining_titles);
});
據中時將觸發狀態下拉菜單改變。當頁面加載時,我怎樣才能讓它啓動?
這似乎讓像5000倍的情況下火的時候我嘗試這種方式。 – David542
@ David542 - 那麼你在做什麼嚴重的錯誤? – adeneo
@adeneo這裏的問題是它會觸發每個'li'元素上的click事件,這可能不是OP所需要的,它看起來像OP想要更新剩餘計數 –