Hallo,
welche Funktion (JavaScript) wandelt Dezimalzahlen in Hexwerte um?
var dez=255,hex;
hex=dez.toString(16).toUpperCase();
alert(hex); // FF
MfG, Thomas
Hallo,
welche Funktion (JavaScript) wandelt Dezimalzahlen in Hexwerte um?
var dez=255,hex;
hex=dez.toString(16).toUpperCase();
alert(hex); // FF
MfG, Thomas