728x90
반응형
Autofocus processing was blocked because a document already has a focused element
=> 기존 화면 위에 모달창 안에있는 input에 autofocus 설정을 해서, 이미 focus가 잡힌 element가 있어서 에러 발생
팝업이 보여지는 이벤트에 추가 or popup init 할 때 focus 이벤트 추가
this._getEl().one('shown.bs.modal', async ()=>{
this._getEl().find('input[name=bdPwd]').focus();
});
initData = () => {
this._getEl().find('input[name=bdPwd]').focus();
}
728x90
반응형
'Error' 카테고리의 다른 글
[Errror][js] Uncaught TypeError: Assignment to constant variable. (0) | 2023.09.20 |
---|---|
[Error] ReferenceError: can't access lexical declaration 'X' before initialization (0) | 2023.09.11 |
[Error] Maximum call stack size exceeded (0) | 2023.07.16 |
[Error][Mybatis] There is no getter for property named (0) | 2023.07.13 |
[Error][Html] input tag enter click reload event (0) | 2023.07.05 |