在我的項目中,有一個輸入密碼的文本框,密碼字符數限制爲15個。所以,我希望儘快通過javascript顯示警報消息用戶嘗試輸入第16個字符。請幫忙!javascript代碼在15次擊鍵後顯示警告消息
1
A
回答
0
使用jQuery:
$("#inputFieldId").on("input propertychange", function(){
var val = this.value;
if(val.length > 15) {
this.value = val.substring(0,15); //comment if you don't want to remove the 16th character
alert("Maximum 15 characters allowed!");
}
});
0
你需要提及你的代碼中捆綁的東西。無論如何,如果你不知道嘗試這種代碼
<input type="text" onkeypress="myFunction(this)" maxlength="5">
<script>
function myFunction(e) {
var maxlen= e.maxLength;
if(e.value.length >= maxlen)
alert("Max length is limited to" +maxlen);
}
</script>
1
試試這個JavaScript的:
document.getElementById("password").onkeyup = function() {
var text = document.getElementById("password").value
if(text.length> 15){
alert("too much text")
}
};
<input id="password" type="password" placeholder="password">
1
試試這個。
function alrtMsg() {
var x = document.getElementById("pwd").value;
if(x.length > 16){
\t alert("maximum length is 16");
\t document.getElementById("pwd").value = '';
}
}
<html>
<body>
<input type="password" id="pwd" onkeyup="alrtMsg()">
</body>
</html>
相關問題
- 1. 提交後顯示警告消息
- 2. 顯示警告消息
- 3. 不顯示警告消息
- 4. Autolayout顯示警告消息
- 5. 點擊接受後顯示警告消息和重定向
- 6. 點擊確定後顯示警告消息和重定向
- 7. 顯示一個消息JavaScript警告註銷後
- 8. 確認消息後顯示警告消息link_to rails
- 9. 如何升級到ARC代碼後顯示警告信息?
- 10. reactjs在單擊鏈接時顯示警告消息
- 11. 在asp.net中點擊複選框顯示彈出警告消息
- 12. 顯示警告消息:在確定按鈕上單擊RedirectToAction
- 13. C代碼中的QA警告消息
- 14. 如何從後面的代碼顯示警報消息?
- 15. before_create失敗時顯示警告消息?
- 16. ExoPlayer不顯示視頻警告消息
- 17. 警告消息不正確顯示
- 18. 爲什麼警告消息不顯示?
- 19. 在javascript中顯示警告消息時避免頁面提交
- 20. 如何在JavaScript警告框中顯示sql錯誤消息?
- 21. JavaScript警告消息不顯示在mvc3中
- 22. 警告消息在編輯後消失
- 23. 如何從AJAX調用後的代碼(C#)中顯示javascript警報消息
- 24. Rails 3:單擊鏈接時如何顯示警告消息?
- 25. 點擊裏面點擊功能導致警告消息顯示不止一次 - jquery/Javascript
- 26. 顯示警告信息重定向後
- 27. 爲什麼警告框在此代碼中顯示兩次?
- 28. Tkinter警告消息中的「不再顯示消息」複選框
- 29. 警告消息
- 30. javascript:如何在Ajax請求後使用警報顯示消息