值我有這樣的HTML代碼的輸入類型數的最小值設定爲其他輸入類型號
<form method="post" action="cashier.php" enctype="form-data/multipart">
<input required id="amount" type="number" min="0" class="form-control" name="txtamount" placeholder="Enter Payment Here..." />
<input required id="cash" type="number" min="document.getElementById('amount').value" class="form-control" name="txtcash" placeholder="Enter Cash Here..." />
<input type="submit" class="btn btn-primary pull-right" name="btnenroll" value="Done" />
</form>
如果我在ID =「量」鍵入1000中,ID =「現金」分鐘將1000.
但它不起作用。
純HTML中的'min'屬性中不能有動態值。你需要一個JS(也可能是一個庫)。 – Pavlo
'min'和'max'屬性只能根據類型填充數字或日期。也許你對HTML5約束驗證感興趣http://www.w3.org/TR/2011/WD-html5-20110525/association-of-controls-and-forms.html#constraint-validation –