0

我已经为类似 ios 的菜单安装了插件 TabBar,并且有将所选页面放在应用程序开头的方法。

plugins.tabBar.selectItem("home");

问题是当我更改选项卡时,它总是选择“主页”,所以我在 javascript 中非常初学者,我尝试使用这段代码来解决它:

if(document.location.href == "index.html"){
     plugins.tabBar.selectItem("home");}

但它不起作用。

有人知道解决方案吗?谢谢人们。

4

1 回答 1

0

我找到了这个,

/**
 * Function to detect currently selected tab bar item
 * @see createItem
 * @see showItems
 */
TabBar.prototype.getSelectedItem = function() {
return this.selectedItem;
};
于 2012-07-20T07:43:55.793 回答