获取输入字段的值,并使用它们进行一些加速

时间:2015-05-01 12:53:16

标签: javascript html user-input

所以我想要他们可以写的3个输入字段,库存,av时间和小时,我已经看到了一些与此相关的答案,但我仍然不确定,因为我是新手。我对jquery一无所知,所以不能选择,谢谢。

          

<h3>Work out how much you could be saving!<h3>

<button type="button" class="calculate">Calculate</button>


<script type="text/javascript">
    // Do the Javscript here!

    function calc (inventories, hours, wage) {
        return (inventories * hours) * wage;
    }
    $('.calculate').click(function(){

        // Put variables here
        console.log (calc ( , , ));
        // Call the caclulation function

        // Output function to text here..

    });

</script>

1 个答案:

答案 0 :(得分:0)

添加输入

<input type="number" id="inventories" />

其他人一样

通过以下方式获取这些字段的内容:

$("#inventories").val();

你的计算函数是这样的:

var inventories = $("#inventories").val();
var wage = $("#wage").val();
var hours = $("#hours").val();
calc(inventories,hours,wage);