这就是我现在拥有的:index.html
<div ng-app>
<h2>Todo</h2>
<div ng-controller="TodoCtrl">
<button class="btn btn-danger" ng-click="start()">Start</button>
</div>
</div>
function TodoCtrl($scope) {
$scope.start = function() {
};
}
我可以填写什么$scope.start
功能,以便单击按钮后,按钮的颜色变为黄色。