标签: 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>
我现在得到的是未定义的。请帮助!!