可以禁用所有相關用戶的鍵盤/鼠標事件如onKeyPress="return false"
,onCut="return false"
,onPaste="return false"
,如下面的代碼:
.form-control {
padding: 8px;
border: 1px solid #ccc; border-radius: 4px;
}
.text-center { text-align: center; }
<input type="number" min="1" max="99" class="form-control text-center" value="{{cartItem.quantity}}" formControlName="quantity" #itemQuantity
onkeypress="return false"
ondragStart="return false" onselectstart="return false"
oncut="return false" oncopy="return false" onpaste="return false"
ondrag="return false" ondrop="return false"
autocomplete="off"
>
也請注意,其他答案不會保持用戶從複製粘貼值到輸入框 –