如图所示,有这么一个表格,表格内数据都是从服务器端请求过来,用ng-reapeat
+{{}}
写入到表格里面的,现在想实现点击退房
按钮时,把当前行
的数据alert
出来。(即表格内有许多行这样的数据,点击不同行的退房
按钮都能获取到对应该行中的数据)。
如果用jquery的思想来获取DOM
,并将其text
打印出来即可。
不过用angular的思想就无从下手。
菜鸟刚学使用angular,希望各位大神提供下思路或者实现方式,万分感谢!
巴扎黑2017-05-15 17:16:16
ng-click
事件添加scope内function。ng-repeat
With $index parameter, pass $index into the trigger function of ng-click event, and you can alert if you find the corresponding data in the controller.