Bind image URL to value in scope
Description
The following code shows how to Bind image URL to value in scope.
Example
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!-- ww w.jav a 2 s. c o m-->
<body>
<div ng-app ng-controller="x">
<img src="{{src}}" />
</div>
<script type='text/javascript'>
function x($scope) {
$scope.src = 'http://www.java2s.com/style/download.png';
}
</script>
</body>
</html>