<html ng-app="mine"> <head> <script src="angular.min.js"></script> <script src="sample.js"></script> </head> <body> <select ng-model="point"> <!-- ng-repeat を使って option タグを動的に生成している --> <option ng-repeat="value in values" value="{{value}}">{{value | number:1}} pt</option> </select> </body> </html> angular .module('mine', []) .run(function($rootScope) { var values = []; for (var i=0; i<=1; i+=0.1)