admin管理员组文章数量:1345110
I have a table.
<tbody>
<tr ng-repeat="star in stars">
<td>
<a ng-href="/#/stars/{{star.id}}">{{star.id}}</a>
</td>
<td>{{star.name}}</td>
</tr>
</tbody>
It renders entities. So far the first column is clickable. I want to make the whole table row (<tr>
) clickable. How can I do it?
I have a table.
<tbody>
<tr ng-repeat="star in stars">
<td>
<a ng-href="/#/stars/{{star.id}}">{{star.id}}</a>
</td>
<td>{{star.name}}</td>
</tr>
</tbody>
It renders entities. So far the first column is clickable. I want to make the whole table row (<tr>
) clickable. How can I do it?
1 Answer
Reset to default 8You can place ng-click
inside of your <tr>
and then have a function in your controller that redirects to the correct URL. Like this:
HTML
<tbody>
<tr ng-repeat="star in stars" ng-click="goToLink(star)">
<td>{{star.id}}</td>
<td>{{star.name}}</td>
</tr>
</tbody>
Controller
$scope.goToLink = function(star) {
$location.path('#/stars/' + star.id);
};
本文标签: javascriptAngular How to make whole table row clickable within ngrepeatStack Overflow
版权声明:本文标题:javascript - Angular: How to make whole table row clickable within ng-repeat? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753323a2533054.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论