基本的javascript华氏度/摄氏度计算器

时间:2013-02-27 21:02:28

标签: javascript html forms

我正在尝试使用Celsius / Fahrenheit转换计算器,每个转换都有一个按钮,结果显示在相应的文本框中。我必须在这里遗漏一些明显的东西...我是javascript的新手,我只是没有得到它。以下是我到目前为止所做的事情:

<!DOCTYPE html>
<html>
    <head> 
        <meta charset = "utf-8"/>
        <title>Convert Fahrenheit and Celsius</title>
        <script type="text/javascript">
            <!--
                function convertToC() {
                    var fTempVal = parseFloat(document.getElementById('fTemp').value);
                var cTempVal = (fTempVal - 32) * (5/9);
                document.getElementById('cTemp').value = cTempVal;
            }

            function convertToF() {
                var cTempVal = parseFloat(document.getElementById('cTemp').value);
                var fTempVal = (cTempVal * (9/5)) + 32;
                document.getElementById('fTemp').value = fTempVal;
            }
        // -->
    </script>
    </head>
    <body>
    <form name="conversionForm">
    <table border="1">
    <tbody>
    <tr>
        <td>Fahrenheit</td>
        <td><input name="fTemp" type="text"/></td>
        <td><button onclick="convertToC">Convert to Celsius</button></td>
    </tr>
    <tr>
        <td>Celsius</td>
        <td><input name="cTemp" type="text"/></td>
        <td><button onclick="convertToF">Convert to Fahrenheit</button></td>
    </tr>
    </form>
    </tbody>
    </table>
</body>
</html>

2 个答案:

答案 0 :(得分:8)

你有一些错误。请参阅此更正 jsFiddle example

  1. 您输入框中缺少您尝试使用document.getElementById
  2. 引用的ID
  3. 您的HTML未正确关闭。
  4. 当您真正想要按钮
  5. 时,您的按钮缺少类型default to submit
  6. 为防止表单实际提交,您应该返回false。
  7. <强>的JavaScript

        function convertToC() {
            var fTempVal = parseFloat(document.getElementById('fTemp').value);
            var cTempVal = (fTempVal - 32) * (5 / 9);
            document.getElementById('cTemp').value = cTempVal;
            return false;
        }
    
        function convertToF() {
            var cTempVal = parseFloat(document.getElementById('cTemp').value);
            var fTempVal = (cTempVal * (9 / 5)) + 32;
            console.log(fTempVal);
            document.getElementById('fTemp').value = fTempVal;
            return false;
        }
    

    <强> HTML

    <form name="conversionForm">
        <table border="1">
            <tbody>
                <tr>
                    <td>Fahrenheit</td>
                    <td>
                        <input name="fTemp" id="fTemp" type="text" />
                    </td>
                    <td>
                        <button type="button" onclick="convertToC();return false">Convert to Celsius</button>
                    </td>
                </tr>
                <tr>
                    <td>Celsius</td>
                    <td>
                        <input name="cTemp" id="cTemp" type="text" />
                    </td>
                    <td>
                        <button type="button" onclick="convertToF();return false">Convert to Fahrenheit</button>
                    </td>
                </tr>
            </tbody>
        </table>
    </form>
    

答案 1 :(得分:1)

您使用document.getElementById()函数查询DOM,但两个input元素目前都没有id属性,只有name属性。因此,在您的示例中,没有任何元素实际匹配您传递给函数的ID。

您应该设置两个元素的id属性,如下所示:

<input id="fTemp" name="fTemp" type="text">

<input id="cTemp" name="cTemp" type="text">