Начало
Эквиваленты
КБ к MB
Вы когда-либо смущались о числе килобайтов в мегабайте, или наоборот? Теперь Вы можете преобразовать между килобайтами и мегабайтами с непринужденностью.
KB
MB
JavaScript Equivalents: КБ к MB
<!-- TWO STEPS TO INSTALL KB TO MB: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function convert() { if(document.KBtoMB.KB.value) { document.KBtoMB.MB.value = eval(document.KBtoMB.KB.value / 1024); } else { if(document.KBtoMB.MB.value) { document.KBtoMB.KB.value = eval(document.KBtoMB.MB.value * 1024); } } } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center> <form name="KBtoMB"> <input type=text name="KB" size="16">KB <input type=button name="KBtoMBgo" value=" < = > " onClick="convert()"> <input type=text name="MB" size="16">MB <input type=reset value=" Clear "> </form> </center> <!-- Script Size: 1.25 KB -->