在HTML中限制input 输入框只能输入纯数字
作者:互联网
oninput="value=value.replace(/[^\d]/g,'')"
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>input</title> </head> <body> 只能输入纯数字的输入框:<input type="text" name="" oninput="value=value.replace(/[^\d]/g,'')"> </body> </html>
标签:oninput,数字,value,输入框,HTML,input,输入 来源: https://www.cnblogs.com/gcgc/p/11168205.html