一個相當微不足道的問題,我該如何返回或傳遞函數外的值?下面如何從javascript函數返回/傳遞值?
代碼:
function numberOfDivs(){
var numberOfElements = $("#div").children().length; //this count how many divs exist
return numberOfElements;
}
$("#element").click(function(){
numberOfDivs();
console.log(numberOfElements);// here I need to return the number but getting error :(
});
千恩萬謝
這是一個異步函數的回調。你不能直接返回任何東西。 –
@medzi,這是非常基本的東西,也許你應該選擇一個教程,並更習慣於語言。 –
@Danilo,你在哪裏看到異步調用?這是存儲由'numberOfDivs()'返回的值的簡單方法。 –