mouseup
事件,在移动电话上使用 touchend
事件来处理此用户交互。
<input type="range" min="0" max="1"
onmouseup="callfunction()"
ontouchend="callfunction()">
我建议检查 caniuse.com 以获得浏览器支持。
已知问题(截至2019-03-25):
tomhughes提出了一个很好的观点:可访问性。
可以将 添加到列表中:<input type="range" min="0" max="1"
onmouseup="callfunction()"
ontouchend="callfunction()"
onkeyup="callfunction()"
>