黑莓 PIN 码验证
黑莓手机是否有 PIN 码验证功能,类似于信用卡,使用最后一位数字(又称校验位)进行验证?
我正在我的网站上进行一些订单处理,用户必须输入他们的 BlackBerry PIN。当然,他们偶尔也会打错。如果有一些已知的验证功能,我将能够立即发现这一点并要求用户纠正它。
Do BlackBerry phones have any PIN-number verification function, similar to credit cards, which use last digit (a.k.a. check digit) for verification?
I am doing some order processing on my site, and users have to enter their BlackBerry PIN. Of course, once in a while they type it wrong. If there was some known verification function I would be able to spot this right away and ask the user to correct it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试检查用户输入的引脚是否为十六进制
you can try checking the pin that user input was in hex
使用 javascript 的网站可以像这样进行检查
var hex=/^[0-9a-fA-F]*$/;
if (hex.test(pin)==false) {
用它做你想做的事
}
website using javascript could do check like this
var hex=/^[0-9a-fA-F]*$/;
if (hex.test(pin)==false) {
do what u want with it
}