我对Java和C++有很好的理解。我现在是第一次学习 JavaScript,但我的一项家庭作业遇到了麻烦。话虽这么说,我不想要直接的答案,只是指向正确的方向。我需要有两个函数:一个是找到给定数字的索引(从数组中),另一个是在某个值 x 上获取数组的所有数字。我尝试过 alert(findIndex(1))、document.write(findIndex(1),最近我尝试过使用按钮。除了我创建的按钮之外,什么都没有显示。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
"http://www.w3.org/TR/html4/strict.dtd>
<head>
<script type = "text/javascript">
var a = [0,1,2,3,4];
function findIndex(var c){
for(var count = 0; count< a.length();count++;){
if(a[count] == c){
alert(count);
}
}
alert("No index can be found");
}
function equalOrAboveX(int x){
for(var count = 0; count< a.length();count++;){
if(a[count]>= x){
alert(a[count]);
}
}
}
</script>
</head>
<body>
<input type="button" value="findIndex(1)" onclick="findIndex(1)">
</body>
</html>