溫馨提示×

溫馨提示×

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

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

AngularJS使用ng-class動態(tài)增減class樣式的方法示例

發(fā)布時(shí)間:2020-09-23 18:13:43 來源:腳本之家 閱讀:359 作者:itsonglin 欄目:web開發(fā)

本文實(shí)例講述了AngularJS使用ng-class動態(tài)增減class樣式的方法。分享給大家供大家參考,具體如下:

使用ng-class可以實(shí)現(xiàn)動態(tài)地增減樣式:

<!DOCTYPE html>
<html ng-app="formExample">
<head>
  <meta charset="UTF-8">
  <title></title>
  <script src="../js/angular.js"></script>
  <script>
    angular.module('formExample', [])
        .controller('FormController', ['$scope', function($scope)
        {
        }]);
  </script>
  <style>
    .strike {
      text-decoration: line-through;
    }
    .bold {
      font-weight: bold;
    }
    .red {
      color: red;
    }
  </style>
</head>
<body>
<div>
  <p ng-class="{strike: deleted, bold: important, red: error}">通過映射的方式</p>
  <input type="checkbox" ng-model="deleted">添加strike樣式<br>
  <input type="checkbox" ng-model="important">添加bold樣式<br>
  <input type="checkbox" ng-model="error">添加錯(cuò)誤樣式
  <hr>
  <p ng-class="style">使用字符串的方式</p>
  <input type="text" ng-model="style" placeholder="輸入 bold、 strike 或 red">
  <hr>
  <p ng-class="[style1, style2, style3]">使用數(shù)組的方式</p>
  <input ng-model="style1" placeholder="輸入: bold, strike 或 red"><br>
  <input ng-model="style2" placeholder="輸入: bold, strike 或 red"><br>
  <input ng-model="style3" placeholder="輸入: bold, strike 或 red"><br>
  <hr/>
</div>
</body>
</html>

更多關(guān)于AngularJS相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《AngularJS指令操作技巧總結(jié)》、《AngularJS入門與進(jìn)階教程》及《AngularJS MVC架構(gòu)總結(jié)》

希望本文所述對大家AngularJS程序設(shè)計(jì)有所幫助。

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

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

AI