溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

AngularJS怎么實(shí)現(xiàn)service之select下拉菜單效果

發(fā)布時間:2021-06-29 09:53:38 來源:億速云 閱讀:147 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了AngularJS怎么實(shí)現(xiàn)service之select下拉菜單效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

示例代碼

<!-- $watch:持續(xù)監(jiān)聽數(shù)據(jù)上的變化,更新界面 -->
<!DOCTYPE html>
<html lang="en" ng-app="myApp" ng-controller="myCtrl">
 <head>
  <meta charset="utf-8">
  <script src="js/angular.js"></script>
 </head>
 <body>
  使用ng-options
  <select ng-model=names[0] ng-options="x for x in names">

  </select><br>

  使用ng-repeat
  <select>
   <option ng-repeat="x in names">{{x}}</option>
  </select><br><br>

   區(qū)別<br>
   ng-options更適合來做下拉菜單<br>
   為什么這么說?<br><br><br>
  <div >使用ng-repeat操作數(shù)組</div><br>
  <select ng-model="selectedSite">
   <option ng-repeat="x in sites" value="{{x.url}}">{{x.site}}</option>

  </select><br>
  <h2>你選擇的是: {{selectedSite}}</h2><br>


  <div >使用ng-options操作數(shù)組</div><br>
  <select ng-model="selectedSite2" ng-options="x.site for x in sites">

  </select><br>
  <h2>你選擇的是: {{selectedSite2.site}}</h2><br>
  <p>網(wǎng)址為: {{selectedSite2.url}}</p><br><br>
  看得出,ng-options操作的是對象 而ng-repeat操作的是字符串
  當(dāng)選擇值是一個對象時,我們就可以獲取更多信息,應(yīng)用也更靈活。<br><br><br><br>

  <div >使用ng-options來操作對象</div>
  <select ng-model="selectedSite3" ng-options="x for (x, y) in sites2">
  </select><br>
  <h2>你選擇的值是: {{selectedSite3}}</h2><br><br><br><br>

  <p>選擇一輛車:</p><br>

  <select ng-model="selectedCar" ng-options="x for (x, y) in cars">
  </select><br>

  <h2>你選擇的是: {{selectedCar.brand}}</h2><br>
  <h3>模型: {{selectedCar.model}}</h3><br>
  <h4>顏色: {{selectedCar.color}}</h4><br>

  <p>注意選中的值是一個對象。</p>

 </body>
 <script>
  var app = angular.module('myApp', []);
  app.controller('myCtrl', function($scope) {
   $scope.names = ["Google", "Runoob", "Taobao"];
   $scope.sites = [
      {site : "Google", url : "http://www.google.com"},
      {site : "Runoob", url : "http://www.runoob.com"},
      {site : "Taobao", url : "http://www.taobao.com"}
      ];
   $scope.sites2 = {
      site01 : "Google",
      site02 : "Runoob",
      site03 : "Taobao"
      };
   $scope.cars = {
      car01 : {brand : "Ford", model : "Mustang", color : "red"},
      car02 : {brand : "Fiat", model : "500", color : "white"},
      car03 : {brand : "Volvo", model : "XC90", color : "black"}
      }
  });
</script>
</html>

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“AngularJS怎么實(shí)現(xiàn)service之select下拉菜單效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI