2016-04-11 42 views
1

Bir sayfa Kaydırma bir sayfa kaydırma, ben 'hakkımızda' menüsünü ve kodumu bölüm id vermek istediğinizyii2 içinde yii2

NavBar::begin([ 
     //'brandLabel' => 'abc', 
     'brandLabel' => Html::img('@web/images/logo.png'), 
     'brandUrl' => Yii::$app->homeUrl, 
     'options' => [ 
      'class' => 'navbar-inverse navbar-fixed-top', 
     ], 
    ]); 
    $menuItems = [ 
     ['label' => 'Home', 'url' => ['/site/index']], 
     ['label' => 'About Us', 'url' => ['/site/index'], '#' => 'aboutusSec'],] 

kod benim için çalışmıyor Üstü olduğunu. Lütfen herkes yardım edebilir mi?

+0

deneyin ' 'url' => [ '/ site/index', '#' => 'aboutusSec']' –

+0

Vay, çalışma .... Çok Hemen cevabınız için teşekkür ederiz. – user3312884

cevap

1

tek bir dizi kullanmayı deneyin:

NavBar::begin([ 
    //'brandLabel' => 'abc', 
    'brandLabel' => Html::img('@web/images/logo.png'), 
    'brandUrl' => Yii::$app->homeUrl, 
    'options' => [ 
     'class' => 'navbar-inverse navbar-fixed-top', 
    ], 
]); 
$menuItems = [ 
    ['label' => 'Home', 'url' => ['/site/index']], 
    ['label' => 'About Us', 'url' => ['/site/index', '#' => 'aboutusSec'],]