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

Angularjs module error in jsfiddle but works fine in plnkr

我这里有 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>

在你的 fiddle

中包含 AngularJS 1.4.8

snapshot attached here