我正在使用jquery mobile构建一个Webworks应用程序。
我想使用jQuery mobile fixed toolbar,但BB7似乎不支持它。
有谁知道在BB7中获得类似工具栏行为的解决方法?
编辑:
这是Android中具有固定页眉+页脚的应用程序,适用于我测试过的所有模型。
这就是它在BB 7.1上的9860上的工作方式。我可以确认在以下设备BB7.1(9860、9810、9320),BB6(9700)上也会发生相同的问题。到目前为止,这些都是我测试过的。
尽管@JasonDScott指出,该属性确实适用于BB7.1(9930)和BB7(9930)。我还发现它可以在BB7(9360-ATT)上运行。
最佳答案
尝试这个 -
$(document).bind("pagecreate", function()
{
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
$("[data-role=header]").fixedtoolbar({ tapToggle: true });
$("[data-role=footer]").fixedtoolbar({ tapToggle: true });
$("[data-position='fixed']").fixedtoolbar('show');
});