위와 같이 setInterval과 document.write를 동시에 지원하는 다른 빠른 브라우저와 크롬 커널 브라우저에서는 문제가 없습니다. 그러나 IE11 브라우저에서는 setInterval이 중지됩니다. 그것을 다루는 방법. 감사해요.
PHP中文网2017-07-05 10:50:22
document.write는 암시적으로 document.open을 호출합니다. 이렇게 하면 document가 재구성되어 모든 event 이벤트와 task가 제거됩니다.
document.write 대신 document.body.innerText
를 사용할 수 있습니다. 으아악