压标签机无法正常工作
这是我的代码-
<asp:TextBox ID="txtVndPassword" MaxLength="10" TabIndex="6" ToolTip="Password" Style="border: 1px solid #ededed;"
CssClass="inputDelivery paddBottom5px" TextMode="Password" runat="server" onkeyup="javascript:checkPasswordStrength(this.value);"></asp:TextBox>
当我输入任何单词时,它会在每次按下时触发 javascript 方法,但是当我按下 tab
按钮时,它不会聚焦到下一个控件,而是聚焦到同一个控件并触发 java 脚本函数也。但是,如果我现在再次按选项卡按钮,它会聚焦到下一个控件,甚至这次不会触发 javascript。
here my code-
<asp:TextBox ID="txtVndPassword" MaxLength="10" TabIndex="6" ToolTip="Password" Style="border: 1px solid #ededed;"
CssClass="inputDelivery paddBottom5px" TextMode="Password" runat="server" onkeyup="javascript:checkPasswordStrength(this.value);"></asp:TextBox>
when I am typing any word it is firing javascript method on each press but then I press tab
button it is not focusing to next control but it focus to the same control and fire java script function too. But if I again press tab button now it focus to next control and even javascript is not fired this time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以发布 checkPasswordStrength 的代码吗?您需要确保该方法中没有捕获 Tab 键并且它返回 true。您还可以尝试将 onkeyup 调用更改为如下所示:
Can you post the code for checkPasswordStrength? You need to ensure that the tab key is not caught in that method and that it returns true. You also might try changing the onkeyup call to look like this: