我在使用離子div的href時遇到了一些問題。如果我使用的離子列表中的所有工作良好:UI-Router離子卡列表
<ion-item class="item-icon-right" ng-repeat="post in posts track by $index" href="#/app/posts/{{post.id}}" track>
但是當我嘗試這對格 - 不工作:
<div class="list card" ng-repeat="post in posts track by $index" href="#/app/posts/{{post.id}}" track></div>
不應該使用'ng-href'嗎?另外,不確定你期望'href'屬性對'div'元素有什麼意義。 'ion-item'指令是不一樣的 - 如果提供了'href'屬性,它的內容將呈現在''元素中[[details](http://stackoverflow.com/a/29937692/1229023)) – raina77ow