input type属性为number时,去掉右边的上下箭头
时间:2019-12-07 16:14:52
收藏:0
阅读:175
加上样式:
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; } input[type="number"]{ -moz-appearance: textfield; }
原文:https://www.cnblogs.com/wuqilang/p/12001611.html
评论(0)