TYPO3 - 边栏导航 li 在页面上没有 'active' class (active/current)
TYPO3 - Sidebar navigation li has no 'active' class when on page (active/current)
TYPO3 - 边栏导航 li 在页面上时没有 'active' class (active/current)。我有这个侧边栏导航......但是在特定页面上没有添加任何活动。有没有人看出哪里出了问题?
lib.navigation = COA
lib.navigation {
20 = HMENU
20 {
entryLevel = 1
1 = TMENU
1 {
expAll = 1
#collapse = active
wrap = <ul class="sidebar-nav" id="menu">|</ul>
NO {
subst_elementUid = 1
ATagBeforeWrap = 1
allStdWrap.insertData = 1
wrapItemAndSub = <li>|</li>
}
ACT <.NO
ACT.wrapItemAndSub = <li class="active">|</li>
CUR <.ACT
#CUR <.NO
#CUR = 1
CUR.wrapItemAndSub = <li class="active">|</li>
#CUR.linkWrap = <strong>|</strong>
...
}
....
}
}
尝试添加 ACT = 1。与 NO 不同,默认情况下 ACT 和 CUR 未激活。
有关此内容的详细信息,请参阅 https://docs.typo3.org/typo3cms/TyposcriptReference/MenuObjects/CommonItemStates/Index.html。
TYPO3 - 边栏导航 li 在页面上时没有 'active' class (active/current)。我有这个侧边栏导航......但是在特定页面上没有添加任何活动。有没有人看出哪里出了问题?
lib.navigation = COA
lib.navigation {
20 = HMENU
20 {
entryLevel = 1
1 = TMENU
1 {
expAll = 1
#collapse = active
wrap = <ul class="sidebar-nav" id="menu">|</ul>
NO {
subst_elementUid = 1
ATagBeforeWrap = 1
allStdWrap.insertData = 1
wrapItemAndSub = <li>|</li>
}
ACT <.NO
ACT.wrapItemAndSub = <li class="active">|</li>
CUR <.ACT
#CUR <.NO
#CUR = 1
CUR.wrapItemAndSub = <li class="active">|</li>
#CUR.linkWrap = <strong>|</strong>
...
}
....
}
}
尝试添加 ACT = 1。与 NO 不同,默认情况下 ACT 和 CUR 未激活。
有关此内容的详细信息,请参阅 https://docs.typo3.org/typo3cms/TyposcriptReference/MenuObjects/CommonItemStates/Index.html。