input 只能输入数字和小数点

<input onkeyup="value=value.replace(/[^\d.]/g,'')" />
or
<input oninput="value=value.replace(/[^\d.]/g,'')" />

你可能感兴趣的:(html)