1. 程式人生 > >系統可能不會保存你所做的修改 onbeforeunload

系統可能不會保存你所做的修改 onbeforeunload

bsp for clas 做的 後來 head col style 實現

網上找了好多實現這個的方法,說的還是不明白。害得我(我自己的原因)以為是需要在服務器環境下才能跑通 window.onbeforeunload; 後來猜想是不是函數返回值發生變化就會觸發,於是對了。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"
></script> <body> <input type="text" id = ‘input‘ value = ‘kkk‘> </body> <script> window.onbeforeunload = function() { return $(#input).val() } </script> </html>

系統可能不會保存你所做的修改 onbeforeunload