您可以使用以下方法來設(shè)置只能輸入數(shù)字的輸入:
<input type="number" name="quantity">
這將只允許用戶輸入數(shù)字類型的值。
<input type="text" id="numericInput">
const numericInput = document.getElementById('numericInput');
numericInput.addEventListener('keyup', function(event) {
const value = event.target.value;
event.target.value = value.replace(/[^0-9]/g, '');
});
這將在用戶輸入時(shí),即時(shí)地將非數(shù)字字符替換為空字符串。
<input type="text" id="numericInput">
<div id="errorText"></div>
const numericInput = document.getElementById('numericInput');
const errorText = document.getElementById('errorText');
numericInput.addEventListener('keyup', function(event) {
const value = event.target.value;
if (!/^[0-9]*$/.test(value)) {
errorText.innerHTML = '只能輸入數(shù)字';
} else {
errorText.innerHTML = '';
}
});
這將在用戶輸入時(shí),實(shí)時(shí)地驗(yàn)證輸入內(nèi)容是否為數(shù)字,并在必要時(shí)顯示錯(cuò)誤提示信息。
請注意,這些方法僅在前端驗(yàn)證用戶輸入的有效性,為了安全性和正確性,您還需要在后端進(jìn)行數(shù)據(jù)驗(yàn)證和處理。