jsfiddle中的Angularjs模块错误但在plnkr中工作正常

时间:2017-01-09 06:35:02

标签: jsfiddle

这里我https://jsfiddle.net/1nivas/6g4hxcof/没有工作 这是https://plnkr.co/edit/u49sV6xhhFOr7bffvLWt?p=preview中相同的angularjs模板,工作正常 你能看看并告诉我什么是错的。我想使用jsfiddle因为它看起来不错。

之前从未使用过jsfiddle



// the main (app) module
var app = angular.module("myApp", []);

// add a controller
app.controller("myCtrl", function($scope) {
    $scope.msg = "hello world";
});

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<body ng-app="myApp" ng-controller="myCtrl">
    {{msg}}
</body>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

在你的小提琴中加入AngularJS 1.4.8

snapshot attached here