<html class="ng-app" id="ng-app">
<head>
<title>angularjs兼容性解决</title>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="json3.min.js"></script>
</head>
<body>
<script>
function Ctrl($scope) {
$scope.list = [];
$scope.text = 'hello';
$scope.submit = function() {
if ($scope.text) {
$scope.list.push(this.text);
$scope.text = '';
}
};
}
</script>
<form ng-submit="submit()" ng-controller="Ctrl">
Enter text and hit enter:
<input type="text" ng-model="text" name="text" />
<input type="submit" id="submit" value="Submit" />
<pre>list={{list}}</pre>
</form>
</body>
<head>
<title>angularjs兼容性解决</title>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript" src="json3.min.js"></script>
</head>
<body>
<script>
function Ctrl($scope) {
$scope.list = [];
$scope.text = 'hello';
$scope.submit = function() {
if ($scope.text) {
$scope.list.push(this.text);
$scope.text = '';
}
};
}
</script>
<form ng-submit="submit()" ng-controller="Ctrl">
Enter text and hit enter:
<input type="text" ng-model="text" name="text" />
<input type="submit" id="submit" value="Submit" />
<pre>list={{list}}</pre>
</form>
</body>
</html>
源码地址:http://download.youkuaiyun.com/detail/cptcpt123/7268281