您不太了解angularjs。在页面加载时,我基于true/false
将范围值定义为location.hash
。
if(location.hash=='#en'){
$scope.selectedLang=true;
}
else{
$scope.selectedLang=false;
}
当selectedLang
为真时,我需要向a
中的li
元素添加活动类。当slectedLang
为假时,我需要删除a
元素中的活动类。
<li><a href="#eng" >english</a></li>
<li><a href="#hin" >hindi</a></li>
默认情况下,selectedLang
应该为true。如何获取?有任何帮助吗?
答案 0 :(得分:1)
您需要像这样使用ng-class,
<li><a href="#eng" ng-class="{'active' : selectedLang}">english</a></li>
<li><a href="#hin" ng-class="{'active' : !selectedLang}">hindi</a></li>
如果您想直接使用样式而不是类,则需要这样使用
<li><a href="#eng" ng-style="{ color : selectedLang ? 'blue' : '#ddd', background: selectedLang ? 'red' : '#fff'}">english</a></li>
<li><a href="#hin" ng-style="{ color : selectedLang ? 'blue' : '#ddd', background: selectedLang ? 'red' : '#fff'}" >hindi</a></li>
并默认设置selectedLang = true
$scope.selectedLang=true;
if(location.hash != '#en'){
$scope.selectedLang=false;
}
答案 1 :(得分:1)