이 기사에서는 onbeforeunload에 대해 설명합니다. 사용하는 방법? 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.
onbeforeunload는 페이지가 언로드(업데이트)되려고 할 때 실행되는 이벤트입니다.
Uninstall(업데이트)은 페이지가 닫힐 때 실행되는 언로드 이벤트에 관한 것입니다.
window.onbeforeunload = funcRef
funcRef는 함수 참조인 메소드를 나타냅니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> </head> <body onbeforeunload="return test()"> </body> <script type="text/javascript"> function test(){ return "你确定要离开吗"; } </script> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> </head> <body> </body> <script type="text/javascript"> window.onbeforeunload=function(){ return "你确定要离开吗"; } </script> </html>
일반적으로 프로젝트에서 창이나 본문을 직접 사용하면 전체 프로젝트 페이지의 새로 고침 및 닫기 이벤트가 차단됩니다.
특정 페이지에서 이 차단을 사용하는 일반적인 아이디어는 페이지에 들어갈 때 이벤트를 마운트하고, 페이지로 이동할 때 마운트된 이벤트를 취소하는 것입니다.
반응의 예:
componentDidMount() { window.onbeforeunload = function() { return "真的离开?"; }; } componentWillUnmount(){ window.onbeforeunload = function() { return null; } }
위 내용은 온비포언로드란 무엇인가요? 사용하는 방법?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!