ここで行き詰まりました。私のWebページには段落がid="history"
あり、ループする関数が必要です。たとえば、以下に示すように、一致するmyArray
場合は何かを実行します。後で学習するので、jQuery を提案しないでください。 myArray[i]
10
var myArray = [];
function myFunction(){
// do something
myArray.push(8);
myArray.push(10);
}
function myOtherFunction(){
document.getElementById('history').innerHTML = myArray;
}
function myAnotherFunction(){
for (var i = 0; i<=myArray.length; i++){
if (myArray[i] === 10){
//do something
}
}
}