我有一个input type=number
用于选择应加载空的年份:
<input type="number" placeholder="Select year" min="1930" max="2015" required
ng-custom-mask="9999" />
当用户通过箭头键选择年份时,它以最小值开始:1930年。它像1980年一样。
如何设置自定义&#34; start&#34;要输入的数字[编号]?
(任何HTML5,JavaScript(甚至是AngularJS)都会很好......)
答案 0 :(得分:1)
如下:
HTML:
<input
type="number"
placeholder="Select year"
min="1930"
max="2015"
required
ng-custom-mask="9999"
ng-model="points"
step="{{getStep()}}" />
在您的控制器中:
$scope.getStep = function() {
if (!$scope.points) {
return 50;
}
return 1;
}
答案 1 :(得分:0)
您只需添加值属性
即可 <input type="number" placeholder="Select year"
min="1930" max="2015" required ng-custom-mask="9999" value="1980"/>
答案 2 :(得分:0)
我有点晚了,但这可以通过解决方法“解决”:
即
HMTL:
.block{
display:inline-block;
background-color: azure;
border:2px solid black;
font-family: fantasy;
height:150px;
width:200px;
padding-top:5px;
justify-content: center;
position: relative;
}
body{
background-color: beige;
}
.game {
height:500px;
width:700px;
background-color: gainsboro;
margin-left: auto;
margin-right: auto;
}
JQuery的:
<input type="number" placeholder="Select year" min="1980" max="1980" required ng-custom-mask="9999" />