Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
mezclar = function(n){
for(var j, x, i = n.length; i; j = parseInt(Math.random() * i), x = n[--i], n[i] = n[j], n[j] = x);
return n;
};
var secuencia = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
var cadena = mezclar(secuencia).toString();
var numeros = new Array();
numeros=cadena.split(",");
//]]>
<div style="color: red; font-weight: bold; font-size: 12pt; font-family: arial;"> <script type="text/javascript"> //<![CDATA[
document.write('<p>Podés hacer esto:<\/p>')
document.write(numeros.join(" <br \/> "));
document.write('<p>o podés hacer esto:<\/p>')
for (m=0;m<numeros.length;m++){
document.write(numeros[m] + " : ");
}
//]]>
Ahi están del 0 al 9, aleatorios y sin repetirse, por lo de construir el formulario no me fijé. Creo que podrías asignar value() y texto a los botones
Saludos