根据文本框更改更新字段 jQuery

Updating a field according to text-box change jQuery

我编写了一个程序,当用户在文本框中键入值时更改字段的值。在我的例子中,2 个文本框是高度和宽度。当有人输入高度和宽度时,应显示相关价格。我会把我的代码写在下面。

<div class="form-group">
        <div class="col-sm-9">
          <input type="text" id="height" />
          <input type="text" id="width" />


          <button type="button" id="show">Enter Size</button>
<button type="button" id="hide">Hide</button>

<script> jQuery('height').on('input', function() {
    <?php echo "hello" ?>


});

function()
{
    <input id="post_price" type="hidden" name="price" value="<?=$price['price'];?>">
}
</script>

        </div>
      </div>

我不太确定我是怎么做的。目前没有输出结果。有人可以帮我吗?为了更有意义,我将附上我的表格的屏幕截图。谢谢!

您可以使用 keydownkeypress 事件。 我举了个小例子here