调用函数将div的值传递为参数

时间:2017-01-31 13:54:34

标签: angularjs function console

我需要从我的html页面调用一个函数,然后使用div内容作为参数。

Angular Code(.js文件)

 $scope.foo = function(url) {
     console.log(url);
  };

.html文件

 <span ng-click="foo(t.ticketId)">
   <div>
    ThisIsTheOutput
   </div>
</span>

我现在得到的是未定义的。请帮助!!

0 个答案:

没有答案