AngularJS ng-options create range

后端 未结 8 888
鱼传尺愫
鱼传尺愫 2020-11-28 09:58

I am trying to create a select element that has a list of numbers 1 to pages where pages is a variable that is the number of pages I have. What i don\'t know how to do is to

8条回答
  •  感动是毒
    2020-11-28 10:31

    In CoffeeScript:

    app.filter 'range', ->
      (input, min, max) ->
        input.push(i) for i in [parseInt(min)..parseInt(max)]
    

    And the HTML:

    
    

    Here is the gist with the Javascript

提交回复
热议问题