我有一些问题,添加一个超链接到'hcard‘中的离子。我使用以下插件(https://github.com/drewrygh/ionic-ion-horizontal-scroll-cards),代码在这里:http://codepen.io/drewrygh/pen/jEJGLx
当我试图添加超链接到hcard时,什么都不会发生。谁知道做这件事的最好方法是什么?
<div ng-controller="barsCtrl">
<h4>Top Rated Bars</h4>
<hscroller>
<hcard ng-repeat="bar in bars" index="{{$index}}" desc="{{bar.name}}" image="{{bar.profile_pic}}">
</hcard>
</hscroller>
</div>发布于 2015-06-15 18:54:33
你的意思是你想让卡片链接到某个东西作为锚标签?您可以将卡片包装在锚标记中:http://codepen.io/anon/pen/Nqvjpv
<a ng-repeat="item in items" href="http://www.google.com?q={{item.desc}}" target="_blank">
<hcard index="{{$index}}" desc="{{item.desc}}" image="{{item.image}}"></hcard>
</a>https://stackoverflow.com/questions/30852467
复制相似问题