개발자의 끄적끄적

[html/css] html iframe sandbox allow modals error 해결 방법 본문

개발/html & css

[html/css] html iframe sandbox allow modals error 해결 방법

효벨 2021. 9. 10. 03:00
728x90
반응형

[html/css] html iframe sandbox allow modals error 해결 방법

 

 

html 에서

 

iframe 을 사용하다 보면

 

아래와 같이

 

sandbox allow-modals 라는

 

에러가 발생하는 경우가 있습니다.

 

The document is sandboxed, and the 'allow-modals' keyword is not set.

 

그럴때는 아래 내용 처럼

 

iframe 에

 

sandbox 속성에 allow-modals 를 추가해주면 됩니다!

<iframe id="test" sandbox="allow-modals"></iframe>

 

참고들 하세요!

반응형
Comments