我正在研究这个例子.. 替换<select>
with<button>
并仍然保留功能的最佳方法是什么?
我试过:
<div ng-model="template" ng-repeat="t in templates">
<button>{{t.name}}</button>
</div>
渲染按钮有效,但在模板之间切换不起作用
原始代码:
<select ng-model="template" ng-options="t.name for t in templates">
<option value="">(blank)</option>
</select>