我想做以下事情。当用户访问我的页面时,我希望有一个提示,询问用户他们想要回答多少个问题(从 1 到 10)。如果用户输入例如 5,则应显示 5 个随机选择的问题(可能有 10 个)。此外,不得有重复。我想告诉你,我根本没有 javascript 方面的经验。我已经做了一些事情,但我需要你关于数组的帮助。我在需要帮助的地方发表了评论。我也对如何做到这一点的其他方式持开放态度。
谢谢
以 3 个问题单选按钮为例的 html 代码
<html>
<head>
</head>
<title> Submitting information </title> </head>
<body>
<form id="quiz">
<br/>
What's the capital of Bulgaria?
<br>
<input type="radio" name="q1" id="city1" value="Sofia"/>
<label for="city1">Sofia</label>
<br>
<input type="radio" name="q1" id="city2" value="Buchurest" />
<label for="city2">Buchurest</label> <br>
<input type="radio" name="q1" id="city3" value="Skopie" />
<label for="city3">Skopie</label>
<br> <br> <br>
What's the capital of Mexico?
<br>
<input type="radio" name="q2" id="cit1" value="Mexico city"/>
<label for="cit1">Mexico city</label>
<br>
<input type="radio" name="q2" id="cit2" value="Karakaz" />
<label for="cit2">Karakaz</label> <br>
<input type="radio" name="q2" id="cit3" value="Lisbon" />
<label for="cit3">Lisbon</label>
<br> <br> <br>
Who's the current UK prime minister?
<br>
<input type="radio" name="q3" id="qq1" value="David Cameron"/>
<label for="qq1">David Cameron</label>
<br>
<input type="radio" name="q3" id="qq2" value="Lloyd George" />
<label for="qq2">Lloyd George</label> <br>
<input type="radio" name="q3" id="qq3" value="Gordon Brown" />
<label for="qq3">Gordon Brown</label>
</p>
</form>
</body>
</html>
这是一个棘手的部分。那是我的javascript代码:
function randomInt(low, high)
// Given : low <= high
// Returns : a random integer in the range [low, high]
{
return Math.floor(Math.random()*(high-low+1)) + low;
}
function randomOneOf(list)
// Given : list is a nonempty list (array)
// Returns: a random item from the list
{
return list[randomInt(0, list.length-1)];
}
var global = prompt("Select No of questions which you want to be
displayed")
// function to document.write specific No of random questions from a set of
questions (between 1 and 10).
// For example user may prompt 5 random questions to be displayed out of 10
function result()
{
// create an array to store the quiz questions
var arr = new Array();
arr[0] = ?? //how to store the quiz questions??.
Maybe form('quiz').q1 or ??. Thanks
arr[1] = ??
arr[2] = ??
.. // till 10
// create another array to store the random number questions that
should appear
var newarr = new Array();
// finding the first random no.
var s = function randomOneOf(arr)
// add the first number to the new array of random numbers
newarr.push(s);
n = 1;
// add the rest of the questions to the array depending on global
var (how many numbers of questions the user wants)
while (n <= global)
{
// find the 2nd random Number
n = function randomOneOf(arr)
for (var i = 0; i < newarr.length; i++)
{
// not allowing duplicates within the random numbers
if n.value != newarr[i]
{
newarr.push(n)
n++
}
}
}
// displaying the random questions
for (var k = 0; k < newarr.length; k++)
{
for j = 0; j < arr.length; j++)
if (newarr[k] == arr[j])
{
document.write(newarr[k]);
}
}
}