在html5标记事件中更改范围变量

时间:2015-07-06 13:57:02

标签: javascript angularjs html5

我正在使用ng-repeat列出我的视频,并且当$scope标记事件被触发时,我需要从html5更改变量。

<div ng-controller="VideoCtrl" ng-repeat="video in videos">
<video src="xx.mp4" onwaiting="video.state = 'waiting'" onplaying="video.state = 'playing'">
</video>
</div>

它给了我video is not defined的错误。

我该怎么做?

由于

0 个答案:

没有答案