2013-08-22 71 views
2

當我將此代碼添加到我的application.js中時,它無法正常工作。 我再顯示2個'custom_text'按鈕,它保留原來的'後退'按鈕。ZURB基金會中的自定義頂部條背文本

$(document).foundation() 
     .foundation('topbar', { 
      index : 0, 
      stickyClass : 'sticky', 
      custom_back_text: true, 
      back_text: 'custom_text', 
      init : true 
     }); 

這怎麼可能是固定的?

回答

0

問題是您正在初始化兩次基礎腳本。您可以通過這種方式解決它:

$(document).foundation('topbar', { 
     index : 0, 
     stickyClass : 'sticky', 
     custom_back_text: true, 
     back_text: 'custom_text', 
     init : true 
    }); 
+0

沒有適用於zurb-foundation(4.3.1)gem。不知道爲什麼。 –

6

基金會頂欄現在支持數據的選項,例如。

<nav class="top-bar" data-section data-options="back_text: 'custom_text'"> 
+2

我很想知道這是記錄在哪裏(對於版本5)?我的意思是這個特定的數據選項屬性以及其他屬性。在哪裏可以找到它? – Henrik

+0

@Henrik你應該從下一次開始閱讀文檔:P http://foundation.zurb.com/docs/javascript.html –