exp-7

PHOTO EMBED

Wed Nov 06 2024 16:19:59 GMT+0000 (Coordinated Universal Time)

Saved by @freefire

<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<input ng-model="name">
<h1> My name is {{name}} </h1>
</div>
<script>
var app = angular.module('myApp', []); app.controller('myCtrl',function($scope){
$scope.name = "John Doe";
});
</script>
<p>When you change the name in the input field, the changes will affect the model, and it will also affect the name property in the controller.</p>
</body>
</html>
content_copyCOPY