显示密码的虚拟关键字 asp.net
我有一个登录页面,输入类型为“密码”,我想要一个虚拟键盘来输入密码。我进行了搜索,找到了虚拟键盘的 jquery 脚本。代码说要将其添加到我的页面
$('input[type=password]').keyboard({
layout: "qwerty",
customLayout:
[["q w e r t y {bksp}", "Q W E R T Y {bksp}"],
["s a m p l e {shift}", "S A M P L E {shift}"],
["{accept} {space} {cancel}", "{accept} {space} {cancel}"]]
});
,但我无法使其工作!!!!当我将焦点集中在密码控制上时,什么也没有发生。 有什么建议吗?谢谢你!!妮可.
I have a login page with an input of type "password" I would like to have a virtual keyboard to enter the password. I've searched and I found the jquery script for virtual keyboard. The code said to add this to my page
$('input[type=password]').keyboard({
layout: "qwerty",
customLayout:
[["q w e r t y {bksp}", "Q W E R T Y {bksp}"],
["s a m p l e {shift}", "S A M P L E {shift}"],
["{accept} {space} {cancel}", "{accept} {space} {cancel}"]]
});
but I cant make it work!!!! nothing happens when I set focus on my password control.
Any suggestions?? thank you!! Nicole.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在使用 虚拟键盘小部件 插件。
I assume you are using the Virtual Keyboard Widget plugin.