alert(Math.floor(Math.random()*71+1));
返回 1 到 71 之间的数字,包括它们。
alert($(".program > div:nth-of-type(5)".text())
返回对应父级的第 5 个 div 中的文本。然而
alert($(".program > div:nth-of-type(Math.floor(Math.random()*71+1))").text());
根本不起作用。我哪里错了?
alert(Math.floor(Math.random()*71+1));
返回 1 到 71 之间的数字,包括它们。
alert($(".program > div:nth-of-type(5)".text())
返回对应父级的第 5 个 div 中的文本。然而
alert($(".program > div:nth-of-type(Math.floor(Math.random()*71+1))").text());
根本不起作用。我哪里错了?