4

我正在尝试做一个摄氏/华氏转换计算器,每个转换都有一个按钮,结果显示在适当的文本框中。我必须在这里遗漏一些明显的东西......我是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>
4

2 回答 2

9

你有几个错误。请参阅这个更正的 jsFiddle 示例

  1. 您的输入框缺少您尝试引用的 IDdocument.getElementById
  2. 您的 HTML 未正确关闭。
  3. 您的按钮缺少类型,这使得它们在您真正想要按钮时默认提交
  4. 为了防止表单被实际提交,您应该返回 false。

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>
于 2013-02-27T21:09:39.160 回答
1

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

您应该id像这样设置两个元素的属性:

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

<input id="cTemp" name="cTemp" type="text">
于 2013-02-27T21:08:29.713 回答