码迷,mamicode.com
首页 > 其他好文 > 详细

所谓输入掩码技术,即只有数字键起作用

时间:2014-06-14 15:15:13      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   ext   

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <style type="text/css">
#switcher input{height:26px;width:200px;}
    
    </style>
    <script src="./jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#switcher input").keypress(function(event){
    if(event.which && (event.which < 48 || event.which >57)){
        event.preventDefault();
    }
});
});
</script>
  </head>
  
  <body>
<div id="switcher">
<input type="text" value="只能输入数字的输入掩码技术" id="txt" maxlength="150" name="txtname"  onfocus="this.value=(this.value==‘只能输入数字的输入掩码技术‘) ? ‘‘ : this.value;" onblur="this.value=(this.value==‘‘) ? ‘只能输入数字的输入掩码技术‘ : this.value;"/>
</div>
</body>
</html>

 

所谓输入掩码技术,即只有数字键起作用,布布扣,bubuko.com

所谓输入掩码技术,即只有数字键起作用

标签:style   class   blog   code   java   ext   

原文地址:http://www.cnblogs.com/cblx/p/3788069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!