gpt4 book ai didi

jquery mobile - 滑动停止功能

转载 作者:行者123 更新时间:2023-12-01 03:20:04 24 4
gpt4 key购买 nike

当我停止滑动 Jquery Mobile Slide 时,我会运行一个函数。

我有这张幻灯片:

<div data-role="fieldcontain">
<fieldset data-role="controlgroup" data-mini="true">
<label for="slider2">
Test
</label>
<input type="range" name="slider" id="testslider" value="0" min="-50" max="50" data-highlight="true" />
</fieldset>
</div>

还有这个 JavaScript:

$(function() {
$( "#slider2" ).bind( "stop", function(event, ui) {
alert("Stop");
});
});

但是这不起作用!

如何在释放鼠标(手指)时运行函数?

最佳答案

正确的方法如下:

$("#slider2").on(
'slidestop',
function(event) {
// Code goes here
}
);

关于jquery mobile - 滑动停止功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10898958/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com