1 回答

TA貢獻(xiàn)1793條經(jīng)驗(yàn) 獲得超6個(gè)贊
正如評論中所指出的,本地存儲(或 cookie)是在沒有自己的服務(wù)器或某些外部服務(wù)的情況下完成您想要的操作的唯一方法。
這絕不是一個(gè)永久的存儲解決方案,您無法控制用戶如何管理其本地存儲,但這里有一個(gè)最小的示例,您可以將其放入 HTML 文件中并在瀏覽器中打開以進(jìn)行測試。
<input id="local-input" onkeydown="store(this)">
<script>
? ? // keep the contents of the input in local storage, called by input onkeydown
? ? function store(e) {
? ? ? ? localStorage.setItem('local', e.value)
? ? }
? ? // if previous storage exists, use it
? ? if(localStorage.getItem('local') !== null) {
? ? ? ? document.getElementById('local-input').value = localStorage.getItem('local')
? ? }
</script>
本地存儲非常容易使用。
- 1 回答
- 0 關(guān)注
- 121 瀏覽
添加回答
舉報(bào)