在形式中,當rate(另一個文本輸入)的值時,我要插入amount(文本輸入)的值。將要插入的數值是速率和數量的乘積。數量值取自數據庫。這裏,rate的值將被用戶插入。 插入金額後,該值不能更改。我怎樣才能做到這一點?當另一個輸入文本被賦予另一個值時,在輸入文本中自動插入值
我曾嘗試下面的代碼,但結果顯示爲零每次:
查看
<div class="form-group">
<label for="exampleInputPassword1">Rate</label>
<input type="text" class="form-control" name="rate" placeholder="Rate" required>
</div>
<div class="form-group">
<label>Quantity</label>
<input type="text" class="form-control" name="quantity" placeholder="quantity" value="<?php echo $object['sheet']; ?> " required readonly>
</div>
<div class="form-group">
<label for="exampleInputPassword2">Amount</label>
<?php
$sheet = $object['sheet'];
$rate = $this->input->post('rate');
$amount = $sheet*$rate;
echo $amount;
}
?>
<input type="text" class="form-control" name="amount" value="<?php echo $amount;?>" placeholder="Amount" required>
</div>
我是否正確,你想改變輸入金額的速度*數量的價值每當價格變化的價值? – Martijn
是的,您正在寫入並且在插入價值iof率時必須顯示金額的值。 –