源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

文本框中禁止非数字字符输入比如手机号码、邮编

  • 时间:2021-09-16 23:21 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:文本框中禁止非数字字符输入比如手机号码、邮编
在工作中,总是遇到很多禁止非数字字符输入的文本框,比如手机号码了 邮编了
[u]复制代码[/u] 代码如下:
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href="style.css"> </head> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <body> <input type="text" id="phone" value="0000"> </body> <script type="text/javascript"> jQuery(document).ready(function($) { // Stuff to do as soon as the DOM is ready; var phone=$('#phone'); $(phone).on('click',function(){ phone.val(''); }) $(phone).on('keyup',function(evt){ var phoneVal=phone.val(); phoneVal=phoneVal.replace('/[^\d]+/g', ''); //替换非数字字符为空格 phoneVal=parseInt(phoneVal,10); if(isNaN(phoneVal)){ phoneVal = ''; } this.value=phoneVal; }) }); </script> </html>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部