gpt4 book ai didi

jquery keyup 适用于除 Firefox 之外的所有浏览器

转载 作者:行者123 更新时间:2023-12-01 01:10:06 27 4
gpt4 key购买 nike

我有这个代码来防止人们在文本框中输入“£”

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;
}
});
});

关于jquery keyup 适用于除 Firefox 之外的所有浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7996449/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com