2012年11月7日 星期三

jquery 限制輸入數字

from http://bibby.be/2008/06/jquery.html

增加一個屬性 onpaste="return false" //不准貼上




<div>
<input type="text" name="quantity" id="quantity" />
</div>
</form>

<script type="text/javascript">
$('#quantity').keypress(function (e){
if((e.shiftKey && e.keyCode == 45) || e.which!=8 &&
    e.which!=0 && (e.which<48 || e.which>57))
{
    return false;
}
});
</script>

0 意見:

張貼留言

 

MangoHost Copyright © 2009 Cookiez is Designed by Ipietoon for Free Blogger Template