jquery keyup在除Firefox之外的所有浏览器中工作

前端之家收集整理的这篇文章主要介绍了jquery keyup在除Firefox之外的所有浏览器中工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个代码,以防止人们进入文本框’£’
jQuery(document).ready(function(){
   jQuery('#cp_price').keypress(function(e){
     if(e.keyCode == 163){
       alert("Exclude the £ sign"); 
       return false;
     }
   });
});

它适用于除Firefox以外的所有浏览器.有什么理由不行吗?

解决方法

我想你需要.
jQuery(document).ready(function(){
   jQuery('#cp_price').keypress(function(e){
     if((e.keyCode ? e.keyCode : e.which) == 163){
       alert("Exclude the £ sign"); 
       return false;
     }
   });
});
原文链接:https://www.f2er.com/jquery/179093.html

猜你在找的jQuery相关文章