编辑下面的代码:
【加编码】
查看效果 »
<html> <body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "The temperature is " + toCelsius(32) + " Centigrade"; function toCelsius(fahrenheit) { return (5/9) * (fahrenheit-32); } </script> </body> </html>
结果:
【此窗口】
帮助?