0

我是这个网站的新手,我想了解更多如何使用 jquery-mobile 处理滑块中的事件。我已经尝试过诸如绑定、滑动停止等基本事件。但没有任何反应。我只想在滑块值更改时收到提示消息。Bellow 是我的 JS 和 HTML 代码。

JS:

$('#mstrbedroom').on({ 
  start: function(event,ui){ 
    alert("halaka");
  },
  stop: function(event,ui){ 
    alert("agoy");
  }
});

HTML 代码:

<label for="mstrbedroom">Dimmer</label>
<input name="mstrbedroom" id="mstrbedroom" min="0" max="100" value="50" type="range">
4

1 回答 1

0

你没有绑定任何事件。on 函数需要作为event第一个参数的参数,在这种情况下我相信你想要slide. 请通读:http ://api.jquery.com/on/ 。

尝试以下操作,请浏览(几乎整个页面或至少事件部分)http://api.jqueryui.com/slider/#event-slide

$('#mstrbedroom').slider({
    start: function(event,ui) {
        alert("halaka");
    },
    stop: function(event,ui) {
        alert("agoy");
    }
});
于 2013-07-15T01:30:28.040 回答