當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


AngularJS ng-src用法及代碼示例


AngularJS中的ng-src指令用於指定<img>元素的src屬性。它確保在評估AngularJS之前不會產生錯誤的圖像。 <img>元素支持它。

用法:

<img ng-src="url"> </img> 

例:


<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
        <title>ng-src Directive</title> 
        <script src= 
        "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"> 
        </script> 
  
    </head> 
    <body ng-app="app" style="text-align:center"> 
      <h1 style="color:green">GeeksforGeeks</h1> 
      <h2>ng-src Directive</h2> 
        <div ng-controller="geek"> 
            <img ng-src="{{pic}}" /><br><br><br> 
        <script> 
            var app = angular.module("app", []); 
            app.controller('geek', ['$scope', function ($scope) { 
                $scope.pic =  
  "https://media.geeksforgeeks.org/wp-content/uploads/20190328034223/ngimg1.png"; 
            }]); 
        </script> 
    </body> 
</html>

輸出:



相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 AngularJS | ng-src Directive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。