gpt4 book ai didi

javascript - HTML5 localStorage 填充表单 onload

转载 作者:行者123 更新时间:2023-11-28 10:07:22 26 4
gpt4 key购买 nike

我遵循 O'Reilly“使用 HTML、CSS 和 Javascript 构建 iPhone 应用程序”中的示例,我希望从表单输入的值在应用程序关闭和重新加载后填充,类似于 php 的“粘性表单”。 '

我对示例进行的唯一更改是在提交时调用 saveSettings,而这里我在卸载时调用它(之前是在输入模糊时)。

加载设置是在文档准备好而不是提交时调用的。

尽管我安装了 jquery mobile,但 pageInit 无法正常工作。

     <!DOCTYPE html> 
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>

<script>
$(document).ready(function(){
$(window).unload(saveSettings);
loadSettings();
});

function loadSettings() {
$('#monthly-income').val(localStorage.income);
$('#saving-per-month').val(localStorage.saving);
$('#current-age').val(localStorage.age);
}

function saveSettings() {
localStorage.age = $('#current-age').val();
localStorage.saving = $('#saving-per-month').val();
localStorage.income = $('#monthly-income').val();
}
</script>


</head>
<body>
<div data-role="content">
<div data-type="horizontal" data-role="controlgroup">
<a href="#foo" data-role="button">Input</a>
<a href="#foo1" id="output-button" data-role="button">Output</a>
</div>
<input type="number" min="500" max="10000" step="100" name="monthly-income" id="monthly-income" value=""/>
<input type="number" min="500" max="10000" step="100" name="saving-per-month" id="saving-per-month" value=""/>
<input type="number" min="16" max="75" step="1" name="current-age" id="current-age" value=""/>
</body>
</html>

最佳答案

1)您可以将您的页面放在互联网上,最好提供二维码以在移动设备上快速加载(免费二维码生成器 here ),以便每个人都可以轻松测试

2) 浏览器设置是否需要授予域在本地存储中存储值的权限?如果是这样,onunload就没有地方接受这样的请求。将一条存储指令放入您准备好的函数中进行测试

3) 卸载有点不可靠(例如 - 浏览器崩溃)。您是否考虑过在输入上保存 onblur 的值?在大型文本区域中时,即使用户仍在编辑,也会将值保存在计时器中。

4) This question还考虑卸载功能的问题。也许这个问题的 future 答案可以解决您的问题?

关于javascript - HTML5 localStorage 填充表单 onload,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8025365/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com