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