我试图在按下按钮时重置我的 jQuery 移动滑块。
这是表单的代码:
<div class="sliders">
<input class="ui-hidden-accessible" data-track-theme="b" data-theme="a" type="range" name="slider1" id="slider1" value="50" min="0" max="100" animate="true"/><br/>
<input class="ui-hidden-accessible" data-track-theme="b" data-theme="a" type="range" name="slider2" id="slider2" value="50" min="0" max="100" animate="true"/><br/>
<button data-theme="a" id="go-back">Done Rating</button>
</div>
这是 JS(它是在 D3 可视化的上下文中):
$('#go-back').click(function () {
//$('#slider1').val(50).slider("refresh");
$('.rate').slideUp();
$('.frame').hide();
_this.transition()
.attr('r', _this.attr('data-r'))
.duration(1000);
});
如上所述,它工作正常,并且在按下按钮时执行转换。如果我取消注释重置滑块的行,当我按下它时,按钮什么也不做。
我越来越Uncaught TypeError: Object [object Object] has no method 'slider
。
我知道这是重置滑块的正确命令,因为我在这里问过。
编辑:这是 JS 导入列表:
<script type='text/javascript' src='js/csrf-ajax.js'></script>
<script type='text/javascript' src='bootstrap/js/bootstrap.min.js'></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>