innerText
也许比 textContent
更常用,他们之间的区别是 innerText
只返回可见 text,textContent
全部返回。也因为 innerText
要先检查可见与否,会先检查 css 样式引起回流,所以说 textContent
是比 innerText
更快的。var unloadEvent = function (e) { var confirmationMessage = "Warning: Leaving this page will result in any unsaved data being lost. Are you sure you wish to continue?"; (e || window.event).returnValue = confirmationMessage; //Gecko + IE return confirmationMessage; //Webkit, Safari, Chrome etc. }; window.addEventListener("beforeunload", unloadEvent);
(unload 没用,用 beforeunload 注意要有 return)