0

我有 2 个页面使用 jQuery Mobile 框架。

一个叫做types.html,我有一个复选框列表。另一个称为products.html,我想在其中显示有关页面 types.html 中选择的类型的产品。

所以,我的问题是:如何将这些检查值传递到下一页?

提前致谢。

[更新]

正如@Ved 建议的那样,这就是解决方案。有效!:)

var chk_types = [];

$('.chk_types:checked').each(function() {
   chk_types.push($(this).attr("value"));
});

localStorage.setItem("chk_types",chk_types);

$('#form').submit();
4

1 回答 1

1

在 types.html 上将所有选定的值存储在数组变量中

localStorage.setItem("checkboxvalue", array_variable);

在 pageshow 上的 products.html 甚至或 document.ready 事件上

localStorage.getItem("checkboxvalue");
于 2013-10-03T05:18:26.540 回答