Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery に 19 個のフィールドを持つ配列があり、ランダムなフィールドをアラートしたいと考えています。私はいくつかのMath.rand()について考えていましたか?
ありがとう!
デニス
怠惰な質問に対する怠惰な答え:
alert( arr[(~~(Math.random() * arr.length))] )
Math.random以下のように使用してください。
Math.random
var randomnumber = Math.floor(Math.random()* $('selector').length) // ^--$('selector').length = 19