search

Home  >  Q&A  >  body text

javascript - 请教angular1.x 如何获取表格内当前行的数据(即angular如何获取DOM)

如图所示,有这么一个表格,表格内数据都是从服务器端请求过来,用ng-reapeat+{{}}写入到表格里面的,现在想实现点击退房按钮时,把当前行的数据alert出来。(即表格内有许多行这样的数据,点击不同行的退房按钮都能获取到对应该行中的数据)。

如果用jquery的思想来获取DOM,并将其text打印出来即可。
不过用angular的思想就无从下手。
菜鸟刚学使用angular,希望各位大神提供下思路或者实现方式,万分感谢!

阿神阿神2743 days ago606

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-05-15 17:16:16

    ng-click事件添加scope内function。ng-repeatWith $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.

    reply
    0
  • Cancelreply