Chrome 로그인 ID, 비밀번호 사전 설정 해제
2984 단어 Chrome
소개
Chrome 기능으로 로그인 ID, 비밀번호를 저장할 수 있습니다.
저장하면 그 이후에 입력 불필요로 로그인할 수 있습니다.
단, 신규 계정 작성 화면, 패스워드 변경 화면에서도 프리셋을 해 버리는 경우도 있다.
이러한 화면은 사전 설정이 있으면 방해가됩니다.
autocomplete="off"를 설정해도 회피할 수 없습니다.
사용자의 브라우저에서 분리
위험하다고 생각되면 Chrome의 비밀번호 저장 기능을 끄면 피할 수 있습니다.
앱 측에서 강제 해제
javascript 코드 재설정
입력 양식
<form name="form1" method="post">
<input type="text" name="emailAddress" id="emailAddress">
<input type="password" name="password" id="password">
<form/>
예를 들어 1초 후 공백으로 설정
setTimeout(function() {
document.form1.password.value = "";
}, 1000)
readonly로 초기 표시하여 사전 설정되지 않도록
<form name="form1" method="post">
<input type="text" name="emailAddress" id="emailAddress">
<input type="password" name="password" id="password" readonly onFocus="this.readOnly = false">
<form/>
초점을 맞출 때 readonly를 제거합니다.
이상
Reference
이 문제에 관하여(Chrome 로그인 ID, 비밀번호 사전 설정 해제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/chenglin/items/036410d5883ddbd0ceee
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
위험하다고 생각되면 Chrome의 비밀번호 저장 기능을 끄면 피할 수 있습니다.
앱 측에서 강제 해제
javascript 코드 재설정
입력 양식
<form name="form1" method="post">
<input type="text" name="emailAddress" id="emailAddress">
<input type="password" name="password" id="password">
<form/>
예를 들어 1초 후 공백으로 설정
setTimeout(function() {
document.form1.password.value = "";
}, 1000)
readonly로 초기 표시하여 사전 설정되지 않도록
<form name="form1" method="post">
<input type="text" name="emailAddress" id="emailAddress">
<input type="password" name="password" id="password" readonly onFocus="this.readOnly = false">
<form/>
초점을 맞출 때 readonly를 제거합니다.
이상
Reference
이 문제에 관하여(Chrome 로그인 ID, 비밀번호 사전 설정 해제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/chenglin/items/036410d5883ddbd0ceee
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<form name="form1" method="post">
<input type="text" name="emailAddress" id="emailAddress">
<input type="password" name="password" id="password">
<form/>
setTimeout(function() {
document.form1.password.value = "";
}, 1000)
<form name="form1" method="post">
<input type="text" name="emailAddress" id="emailAddress">
<input type="password" name="password" id="password" readonly onFocus="this.readOnly = false">
<form/>
Reference
이 문제에 관하여(Chrome 로그인 ID, 비밀번호 사전 설정 해제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/chenglin/items/036410d5883ddbd0ceee텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)