Nun. Ich programmiere ja nich nur VB oder PHP. Auch Javascript ist mein Bereich. Doch jetzt häng ich fest.
Naja, programmieren würd ich das nicht nennen, wie du schon sagtest ist es eher probieren.
Ich hoffe, dass das das Problem außreichend schildert. Habs mit 'ner While-Schleife probiert, aber die Schleife findet kein Ende.
Das ist ein Standardproblem für das du mit ein bisschen suchen auch schnell eine Lösung mit google gefunden hättest.
Vielleicht probierst du's mal so:
<script type="text/javascript">
do
{
var zahl = parseInt(Math.random() * 1e9);
}while(confirm( zahl + '=' + format(zahl)))
function format(zahl, TZ)
{
if(!TZ) TZ = '.';
var new_string = [];
var tmp = parseInt(zahl) + '';
while( tmp.length > 3)
{
new_string[new_string.length] = tmp.substr(tmp.length - 3 ) ;
tmp = tmp.substr(0, tmp.length -3 )
}
if(tmp) new_string[new_string.length] = tmp;
return new_string.reverse().join(TZ);
}
</script>
Struppi.