我已经为类似ios的菜单安装了插件TabBar,并且有一种方法可以将所选页面放在app的开头。
plugins.tabBar.selectItem("home");
问题是,当我更改标签时,它总是选择“主页”,所以我在javascript中非常好,并且我尝试使用此代码来解决它:
if(document.location.href == "index.html"){
plugins.tabBar.selectItem("home");}
但它不起作用。
有人知道解决方案吗? 谢谢大家。
答案 0 :(得分:0)
我发现了这个,
/**
* Function to detect currently selected tab bar item
* @see createItem
* @see showItems
*/
TabBar.prototype.getSelectedItem = function() {
return this.selectedItem;
};