aj

<!DOCTYPE html>
<html>//变颜色
<head lang="en">
    <meta charset="UTF-8">
    <script type="text/javascript" src="angular-1.3.0.js"></script>
    <title></title>
    <style>
        .sky {
            background-color: lightblue;
        }
        .t {
            background-color: coral;
        }
    </style>
</head>
<body ng-app="">
     <select ng-model="a">
         <option value="sky">天空</option>
         <option value="t">番茄</option>
     </select>
<div ng-class="a">
         <h2>sdasd</h2>
</div>
</body>
</html>






//随机数
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script src="angular-1.3.0.js"></script>
    <script>
            var my = angular.module('my',[]);
            my.controller("myapp",function($scope){
                $scope.check = function()
                {
                    $scope.random=Math.ceil(Math.random()*6);
                    $scope.rad=Math.ceil(Math.random()*6);
                    $scope.haha = $scope.random - $scope.rad;
                }
                $scope.chong = function()
                {
                    $scope.random=null;
                    $scope.rad=null;
                    $scope.haha = null;
                }
            });
    </script>
</head>
<body ng-app="my" ng-controller="myapp">
    <input type="number" ng-model="random"/><br>
    <input type="number" ng-model="rad"/><br>
    <button type="button" ng-click="check()">掷骰子</button>
    <button type="button" ng-click="chong()">不玩了</button>
    <h4 ng-if="haha>0">张三赢了</h4>
    <h4 ng-if="haha<0">李四赢了</h4>
    <h4 ng-if="haha==0">张三李四平局</h4>
</body>
</html>

 
 
 
 
<div ng-app="" >//<input type="number" ng-model="quantity">
    <input type="number" ng-model="price">
    <p>总价 = {{ (quantity * price) | currency }}</p>
</div>

 
 
 
 
//时间
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
      <script type="text/javascript" src="angular-1.3.0.js"></script>
    <title></title>
    <script>
        var app=angular.module("timer",[]);
        app.directive("nowTime",function(){
              return{
                  restrict:"EACM",
                  template:"<h3>" + new Date().toLocaleDateString()+""+new Date().toLocaleTimeString()+ "</h3>",
                  replace: true
              }
            });
    </script>
</head>
<body ng-app="timer">
  <now-time>当前时间:</now-time>
  <!-- 标签: restrict: "E" - Element -->
  <div now-time>档当当</div>
  <!-- 属性: restrict: "A" - Attribute -->
  <div class="now-time">当前时间:</div>
  <!-- 类: restrict: "C" -->
  <!-- directive: now-time --> <!-- 注释: restrict: "M" -->
</body>
</html>

//Http   Service
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <script type="text/javascript" src="angular-1.3.0.js"></script>
    <title></title>
    <script type="text/javascript">
        var app = angular.module("myApp", []);
        app.controller("bookCtrl", function ($scope, $http) {
            $http({
                method: "GET",
                url: "book.json"
            }).success(function (data, status, headers, config) {
                $scope.book = data;
            }).error(function (data, status, headers, config) {
                console.log(status);
            });
        });

        app.controller("bookListCtrl", function ($scope, $http) {
            $http({
                method: "GET",
                url: "books.json"
            }).success(function (data, status, headers, config) {
                $scope.books = data;
            }).error(function (data, status, headers, config) {
                console.log(status);
            });
        });
    </script>
</head>
<body ng-app="myApp">
<div ng-controller="bookCtrl">
    <ul>
        <li>ID:{{ book.id }}</li>
        <li>标题:{{ book.title }}</li>
        <li>类型:{{ book.type }}</li>
        <li>描述:{{ book.description }}</li>
        <li>图片:<img src="{{ book.picture }}" /></li>
        <li>是否推荐:{{ book.isRecommend }}</li>
        <li>上架时间:{{ book.dtCreated }}</li>
    </ul>
</div>

<div ng-controller="bookListCtrl">
    <table border="1">
        <tr>
            <th>NO</th>
            <th>ID</th>
            <th>标题</th>
            <th>是否推荐</th>
            <th>价格</th>
        </tr>
        <tbody ng-repeat="book in books">
        <tr>
            <td>{{$index}}</td>
            <td>{{book.id}}</td>
            <td>{{book.title}}</td>
            <td>
                <i ng-if="book.isRecommend"></i>
                <i ng-if="!book.isRecommend"></i>
            </td>
            <td>{{book.price}}</td>
        </tr>
        </tbody>
    </table>
</div>
</body>
</html>

//秒变
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <script type="text/javascript" src="angular-1.3.0.js"></script>
    <title></title>
    <script>
        var nowtime=function(){
            return new Date().toLocaleDateString()+""+new Date().toLocaleTimeString();
        }
        var app=angular.module("myApp",[]);
        app.controller("myCtrl",function($scope,$interval,$timeout){
           $interval(function(){
               $scope.nowtime=nowtime();
           },1000);
            $timeout(function () {
                $scope.mytext = "Java B C";
            }, 5000);
        })
    </script>
</head>
<body ng-app="myApp">
   <div ng-controller="myCtrl">
       <div>{{ nowtime }}</div>
       <div>等待5秒显示的文字:{{ mytext }}</div>
   </div>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值