js控制input只能输入整数,不能输入小数
2023-04-06 10:15
2373
javascript控制input输入框只能输入整数位
<input type="number" onkeyup="value=value.replace(/[^\d]/g,'')" />
0 条讨论