Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

how to change the maximum character setting for password in firefox

  • 6 trả lời
  • 1 gặp vấn đề này
  • 2 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

i have a long password about 18 character to open an application from my desktop , but I cannot type in the 18 character password on my laptop using firefox browser. Is urgent can please help?

i have a long password about 18 character to open an application from my desktop , but I cannot type in the 18 character password on my laptop using firefox browser. Is urgent can please help?

Tất cả các câu trả lời (6)

more options

Is the problem that the input box on the form stops accepting characters, the input box on the form is too narrow and therefore you can't see how many characters are being entered, or Firefox's password save feature won't save an 18-character password?

more options

Firefox should be able to handle 18-character long password.

Are you trying to log in to a web application (if so, what is the website)?

If you have the above problem, try the solutions presented on Fix login issues on websites that require a username and password.

If that solution doesn’t work, try Refresh Firefox - reset add-ons and settings.

more options

Hi, thanks for your help, how do I change the input box form to accept 18 characters. I'm desperate for solution

more options

Do you see any size restriction on that input form if you select that part of the screen and use View Selection Source in the right-click context menu or use the Inspector to check the code of that form?

more options

Yes ,I think is max 12, but yesterday I was able to change my password from 8 character to 18 character using desktop, but after that I could not log in from my laptop. Are you refer to the note below

<input name="c_pass" type="password" id="c_pass" size="40" maxlength="12"></td>

please advise

more options

You can try to increase the maxlength by running this code in the Scratchpad (Web Developer > Scratchpad;Shift+F4) or the command line of the Web Console (Web Developer > Web Console;Shift+Ctrl+K), but the server may not accept it.


N=document.querySelectorAll('input[maxlength]'),I;
for(i=0;I=N[i];i++){
 if(I.getAttribute('maxlength')=='12'){
  I.setAttribute('maxlength','20');
 }
}

Được chỉnh sửa bởi cor-el vào