這是我第一天,我試圖得到一個簡單的平衡工作,但事實並非如此。這裏有一個小提琴:http://jsfiddle.net/LKktL/有棱角的第一天;我究竟做錯了什麼?
<body ng-app>
<div ng-controller='EventAddCtrl'>
<p>Nothing here {{'yet' + '!'}}</p>
<div class='first-test' ng-click="say_hello()">angular test to say hello</div>
</div>
</body>
function EventAddCtrl($scope){
$scope.say_hello = function() {
alert('hello in there');
}
}
這顯然不工作,並試圖找出原因。 thx提前
http://pkozlowskios.wordpress.com/2012/08/12/using-jsfiddle-with-angularjs/ –