Bueno esto es lo que he averiguado pero por ahora me salen ordenados pero alfabeticamente con el sort, y los quiero ordenar como numeors, lo he intentado con parseInt pero nada.
Y como aclaracion, no uso aleatorio porque las puntuaciones las cojo yo de otra parte y las escribo en las cajas de texto de HTML
Un saludo y gracia spor las respuestas
Código Javascript
:
Ver originalvar a, a1, b, b2, c, c3, d, d4, e, e5 , f, f6, g, g7, h, h8, i, i9, j, j10, k, k11, l, l12, m, m13, n, n14, o, o15;//aqui son los 30 cuadros de texto, 15 por nombres y 15 por puntuacion
var z;//var para el boton y que dispare la funcion sortear()
function inicio()
{
a = document.getElementById("jugador1");
a1 = document.getElementById("puntuacion1");
b = document.getElementById("jugador2");
b2 = document.getElementById("puntuacion2");
c = document.getElementById("jugador3");
c3 = document.getElementById("puntuacion3");
d = document.getElementById("jugador4");
d4 = document.getElementById("puntuacion4");
e = document.getElementById("jugador5");
e5 = document.getElementById("puntuacion5");
f = document.getElementById("jugador6");
f6 = document.getElementById("puntuacion6");
g = document.getElementById("jugador7");
g7 = document.getElementById("puntuacion7");
h = document.getElementById("jugador8");
h8 = document.getElementById("puntuacion8");
i = document.getElementById("jugador9");
i9 = document.getElementById("puntuacion9");
j = document.getElementById("jugador10");
j10 = document.getElementById("puntuacion10");
k = document.getElementById("jugador11");
k11 = document.getElementById("puntuacion11");
l = document.getElementById("jugador12");
l12 = document.getElementById("puntuacion12");
m = document.getElementById("jugador13");
m13 = document.getElementById("puntuacion13");
n = document.getElementById("jugador14");
n14 = document.getElementById("puntuacion14");
o = document.getElementById("jugador15");
o15 = document.getElementById("puntuacion15");
z = document.getElementById("boton");
z.addEventListener("click", sortear);
}
function sortear()//y en esta ecuacion me pierdo, pero hice array y empece ciclo
{
var puntuaciones = [a1.value , b2.value, c3.value, d4.value, e5.value, f6.value, g7.value, h8.value, i9.value, j10.value, k11.value, l12.value, m13.value, n14.value, o15.value];
var ganador = document.write(puntuaciones.sort(sortn));
ganador = parseInt();
var resultado = puntuaciones[posicion];
resultado = parseInt();
var participantes = puntuaciones.length;
var posicion;
//alert(puntuaciones.sort())
//for(posicion = 0; posicion<= participantes; posicion++)
//{
function sortn(x,y)
{
if(x>y)
{
return -1;
}
else if(x == y)
{
return 0;
}
else
{
return 1;
}
}
ganador;
//}