I am going to share the code sample for "how to bind image control using angularjs.
The example code as give below. Click for live demo
The example code as give below. Click for live demo
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| //This code sample is used to bind the image control using angularjs. <!DOCTYPE html> <html> <head> <link rel= "stylesheet" href= "style.css" > <script> var app = angular.module( 'imageApp' , []); app.controller( 'imageAppCtrl' , function ($scope) { $scope.urlImage = 'image/default.jpg' ; $scope.replaceImage = function () { $scope.urlImage = 'image/new.jpg' ; } }); </script> </head> <body ng-app= "imageApp" > <div> <div ng-controller= "imageAppCtrl" > <a href= '#' > <img ng-src= "{{urlImage}}" /> </a> <button ng-click= "replaceImage()" >Replace Image</button> </div> </div> </body> </html> |
//This code sample is used to bind the image control using angularjs. <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> <script src="https://code.angularjs.org/1.3.14/angular.js"></script> <script> var app = angular.module('imageApp', []); app.controller('imageAppCtrl', function($scope) { $scope.urlImage = 'image/default.jpg'; $scope.replaceImage = function() { $scope.urlImage = 'image/new.jpg'; } }); </script> </head> <body ng-app="imageApp"> <div> <div ng-controller="imageAppCtrl"> <a href='#'> <img ng-src="{{urlImage}}" /> </a> <button ng-click="replaceImage()">Replace Image</button> </div> </div> </body> </html>