現在嘗試了大約一個小時,無法讓我的陣列在按下按鈕時顯示其長度。它在一次嘗試中顯示了它的長度,但它與數組中元素的數量完全不同。我偶爾會在某個地方看到這種情況,並且與未定義的元素有關。但現在它沒有顯示任何警報。陣列沒有顯示長度
var fruits("Banana", "Apple", "Orange")
function myFunction() {
alert(fruits.length)
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<body>
<script>
src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" >
</script>
<script src="Arrays.js">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
</head>
<button id="lengthbutton" onclick="myFunction()"> Click me to find out length </button>
</body>
</html>
陣列使用定義'[]'括號 –
是的JavaScript的腳本標記內? –
好吧,我會試試 – BrownEyedNinja