select.html 1.03 KB
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <title></title>
    </head>
    <body>
        <div ng-app="esNgAntd" ng-controller="mainCtrl">
            <div class="container" style="padding: 50px">
                <es-select style="width: 200px;" value="AAA" on-change="handleChange(value)" placeholder="请选择...">
                    <es-select-option value="{{value}}" ng-repeat="value in options">{{value}}</es-select-option>
                </es-select>
            </div>
        </div>
        <script src="https://cdn.staticfile.org/angular.js/1.2.28/angular.min.js"></script>
        <script src="../dist/ng-antd.js"></script>
        <script>
            angular
                .module("esNgAntd")
                .controller("mainCtrl", function ($scope) {
                    $scope.options = ["AAA", "BBB"]
                    $scope.handleChange = function(value) {
                        console.log("mainCtrl:value", value)
                    }
                });
        </script>
    </body>
</html>