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 に答える