HTML5:输入类型范围有“onrelease”之类的事件吗?

问题描述 投票:4回答:1

我需要在释放滑块时调用函数,“onchange”会在更改时更改值。这有解决方案吗?

像这样

<input type="range" min="0" max="1" onrelease="callfunction()">
html html5
1个回答
7
投票

在桌面浏览器上使用mouseup事件,在手机上使用touchend事件来处理此用户交互。

<input type="range" min="0" max="1" 
       onmouseup="callfunction()" 
       ontouchend="callfunction()">

我建议检查caniuse.com浏览器支持。

已知问题(截至2019-03-25):

© www.soinside.com 2019 - 2024. All rights reserved.