Начало
Эквиваленты
Температура
Используйте JavaScript, чтобы найти температурные эквиваленты
Войдите в число в любую область, затем щелкните вне текстового окна.
F:
C:
JavaScript Equivalents: Температура
<!-- ONE STEP TO INSTALL TEMPERATURE EQUIVALENTS: 1. Put the designated code into the BODY of your HTML document --> <!-- STEP ONE: Copy this code into the BODY of your HTML document --> <BODY> Enter a number in either field, then click outside the text box. <form> <! > <! > F: <input type="text" name="F" value="32" onChange="C.value = 100/(212-32) * (this.value - 32 )"><br> C: <input type="text" name="C" value="0" onChange="F.value = (212-32)/100 * this.value + 32 "><br> </form> <!-- Script Size: 0.67 KB -->