公斤到磅的转换无法正常工作

KG to lbs conversion not working properly

我是 JavaScript 的新手,不明白为什么它不起作用。

HTML :

<input type="text" id="weight_value" placeholder="Input Weight" />
                <select id="weight_unit">
                   <option value="lbs">KG to Pound</option>
                   <option value="kg">Pound to KG</option>
                </select>
                <button title="Convert" onclick="display_result()">Convert</button>
            <div id="result"></div>
<script src="hero.js"></script>

JavaScript:

 function display_result(){

                        var kg = 0.45359237
                        var results = ""

                            if ($(this).val() == "kg") {
                                $("#result").val( $("#weight_value").val()*kg)
                            } else {
                                $("#result").val( $("#weight_value").val()/kg)
                            }
                        };

试试这个。

function display_result(){
    var kg = 0.45359237
    var results = ""
    if ($('#weight_unit').val() == "kg") {
        $("#result").html( $("#weight_value").val()*kg)
    } 
    else {
        $("#result").html( $("#weight_value").val()/kg)
    }
};