JSP页面

 <form>
   <table class="countrys" data-name="tableCountry">
    <tr bgcolor="lightgrey">
     <th>Country ID</th>
     <th>Country Name</th>
    </tr>
    <tr data-ng-repeat="c in allCountrys"
     data-ng-click="selectedCountry(c, $index);"
     data-ng-class="getSelectedClass(c);">
     <td>{{c.countryId}}</td>
     <td>{{c.countryName}}</td>
    </tr>
   </table>
 </form>


控制者

$scope.selectedCountry = function(country, index){
angular.forEach($scope.allCountrys,function(value, key) {
      if (value.countryId == country.countryId) {
       $scope.selectedCountry = country;
      }
 });

$scope.selectedRowCountry = index;
}


$scope.getSelectedClass = function(country) {

 if ($scope.selectedCountry.countryId != undefined) {
  if ($scope.selectedCountry.countryId == country.countryId) {
   return "selected";
  }
 }
 return "";
};


的CSS

tr.selected {
   background-color: #aaaaaa;
}


我的页面上有此表格,一旦我按1行,它就会选择它,它会改变颜色,并且在两个功能中都起作用...

但是一旦我单击另一行,它就不会进入selectedCountry函数,而只会进入sgetSelectedClass函数

我不知道为什么,我只是不能选择一行,然后选择另一行,依此类推...所以总是只选择一行

你能帮我吗?

最佳答案

您将$scope.selectedCountry定义为函数,但是在第一次单击selectedCountry时,您可以通过在ng-click函数内调用$scope.selectedCountry$scope.selectedCountry = country;作为对象。

因此,请保留范围变量。

$scope.selectedCountry = function(country, index){
angular.forEach($scope.allCountrys,function(value, key) {
  if (value.countryId == country.countryId) {
   $scope.selectedCountry = country; // rename this scope variable
  }
});

08-04 22:30