在 Js 中我如何比较两个值。我有三个按钮,每个按钮在1
和之间生成一个数字3
。
我想将它们输出的数字与 的数字进行比较button
,例如第一个按钮可能是1
,第二个2
,第三个3
。
如果按钮生成的数字与 2 相同,则表示为平局。
function Random()
{
var result = display.innerHTML = Math.floor((Math.random() * 3) + 1);
}
HTML 代码:
<form>
<input id="rock" type="button" onclick="Random()" value="Rock" />
<input id="paper" type="button" onclick="Random()" value="Paper" />
<input id="scissors" type="button" onclick="Random()" value="Scissors" />
</form>