把摄氏度转换为华氏度

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript 摄氏度转华氏度</h2>
  6.  
  7. <p>在下面的输入字段之一中插入一个数字:</p>
  8.  
  9. <p><input id="c" onkeyup="convert('C')"> 摄氏度</p>
  10.  
  11. <p><input id="f" onkeyup="convert('F')"> 华氏度</p>
  12.  
  13. <p>请注意,使用了 <b>Math.round()</b> 方法,因此结果将作为整数返回。</p>
  14.  
  15. <script>
  16. function convert(degree) {
  17. var x;
  18. if (degree == "C") {
  19. x = document.getElementById("c").value * 9 / 5 + 32;
  20. document.getElementById("f").value = Math.round(x);
  21. } else {
  22. x = (document.getElementById("f").value -32) * 5 / 9;
  23. document.getElementById("c").value = Math.round(x);
  24. }
  25. }
  26. </script>
  27.  
  28. </body>
  29. </html>