我使用jQuery滑块作为表单中的价格范围选择器。 我希望在其中一个值更改后自动提交表单。我使用了几个我在SO上找到的例子,但他们并没有使用我的代码。
<form action="itemlist.php" method="post" enctype="application/x-www-form-urlencoded" name="priceform" id="priceform" target="_self">
<div id="slider-holder">
Prices: From <span id="pricefromlabel">100 €</span>
To <span id="pricetolabel">500 €</span>
<input type="hidden" id="pricefrom" name="pricefrom" value="100" />
<input type="hidden" id="priceto" name="priceto" value="500" />
<div id="slider-range"></div>
<input name="Search" type="submit" value="Search" />
</div>
</form>
这是显示滑块值的代码,并更新我用来存储价格的2个隐藏表单字段以便提交:
<script>
$(function() {
$("#slider-range" ).slider({
range: true,
min: 0,
max: 1000,
values: [ <?=$minprice?>, <?=$maxprice?> ],
start: function (event, ui) {
event.stopPropagation();
},
slide: function( event, ui ) {
$( "#pricefrom" ).val(ui.values[0]);
$( "#priceto" ).val(ui.values[1]);
$( "#pricefromlabel" ).html(ui.values[0] + ' €');
$( "#pricetolabel" ).html(ui.values[1] + ' €');
}
});
return false;
});
</script>
我尝试过添加此代码以及数据自动提交=&#34; true&#34;属性为div但没有结果。
$(function() {
$('[data-autosubmit="true"]').change(function() {
parentForm = $(this).('#priceform');
clearTimeout(submitTimeout);
submitTimeout = setTimeout(function() { parentForm.submit() }, 100);
});
我还尝试在滑块上添加$ .post()事件,但我对jQuery不是很好,所以我可能做错了。任何帮助将不胜感激。
答案 0 :(得分:5)
jquery-ui滑块上有一个更改事件。
试试这个:
$(document).ready(function() {
$("#slider-range" ).slider({
// options
start: function (event, ui) {
// code
},
slide: function( event, ui ) {
// code
},
change: function(event, ui) {
$("#priceform").submit();
}
});
});