Input标签_实现限制输入字符类型(只能输入特定类型字符)
摘要:
... <input type="text" placeholder="密码" maxlength="20" onKeyPress="return pressLetterInt(event)" /> .... // 只能输入字母和数字function pressLetterInt(e){ var i 阅读全文
posted @ 2018-07-04 21:02 依稀往事 阅读(288) 评论(0) 推荐(0) 编辑