0
Q
部隊鼠標點擊
A
回答
0
已在 「卸載」 事件看;)
的取出電話,你只需要,如果你打電話給
confirm('Are you sure ?');
或類似的評論 「onbeforeunload」 說想要使用頁面中的對象
function goodbye(e) {
if(!e) e = window.event;
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
e.returnValue = 'You sure you want to leave?'; //This is displayed on the dialog
//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
}
window.onbeforeunload=goodbye;
1
您需要使用事件「onb eforeunload」附着有窗口:
相關問題
- 1. SDL鼠標點擊
- 2. Powershell,鼠標點擊
- 3. SeaDragon鼠標點擊
- 4. 鼠標點擊JTable
- 5. 鼠標點擊java
- 6. 鼠標點擊jquery
- 7. 鼠標點擊原點
- 8. 繪圖點鼠標點擊
- 9. 讓鼠標在鼠標點擊鼠標後跟着鼠標
- 10. 鼠標點擊標籤
- 11. CodedUi:鼠標點擊座標
- 12. 區分機器人鼠標點擊和人類鼠標點擊
- 13. 鼠標點擊面板跳過點擊
- 14. 鼠標移動事件在下部div上,鼠標點擊上部
- 15. 強制點擊鼠標
- 16. 龍聽寫鼠標點擊
- 17. 鼠標點擊Silverlight 4
- 18. 點擊鼠標懸停
- 19. Opengl鼠標點擊矩形
- 20. 發送鼠標點擊
- 21. 鼠標點擊摺疊行
- 22. 鼠標點擊操作VC++
- 23. QwtPlot鼠標點擊事件
- 24. 模擬鼠標點擊QWebEngineView
- 25. GLUT鼠標點擊檢測
- 26. VBS發送鼠標點擊?
- 27. 檢測鼠標點擊
- 28. jquery mousehover鼠標點擊
- 29. 點擊鼠標移動DIV?
- 30. 捕獲鼠標點擊php
我認爲是更好地使用‘onbeforeunload’保持所有對象的文件活着 – sahid