我正在使用 html-5 滑块
<input type="range" .. />
我想分别在其左侧和右侧滑动滑块min
和值。max
我怎样才能做到这一点?
我正在使用 html-5 滑块
<input type="range" .. />
我想分别在其左侧和右侧滑动滑块min
和值。max
我怎样才能做到这一点?
尝试
<input type="range" min="20" max="80" />
以下属性也可以应用于input type="range"
如果要在其左右显示min
和值,只需在此处打印:max
10 <input type="range" min="10" max="20" /> 20
您也可以使用 css,尽管它没有得到广泛支持。
input[type="range"]:before {
content: attr(min) " ";
}
input[type="range"]:after {
content: " " attr(max);
}