检查Jquery Mobile传递到页面复选框

时间:2013-10-03 02:54:48

标签: javascript jquery jquery-mobile

我有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();

1 个答案:

答案 0 :(得分:1)

在types.html上存储数组变量

中的所有选定值存储
localStorage.setItem("checkboxvalue", array_variable);

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

localStorage.getItem("checkboxvalue");