如何調用一個常規函數命名空間中的jQuery的 - 調用命名空間中的一個函數
$(document).ready(function() {
Timeline.init();
Timeline.highlight_arrow();
Timeline.arrows();
});
Timeline.arrows = (function() {
function display_arrows(pos) {
}
}());
我特林從內Timeline.arrows我試着Timeline.arrows.display_arrows(調用dislay_arrows)做它需要成爲一個公共方法?