我正在创建一种注册表单,我已经使用 FORM 标签来表示名称等,我还需要滑块。我用 jquery 创建了我的滑块。有什么方法可以从这个滑块“转发”值,就像我从 FORM 标签输入中一样,用于 php 脚本?谢谢
<p style="text-align: center">Amount: <span id="amountDisp" style="color: #ff0000">500</span><div id="amount_slider"></div></p>
function () {
$("#amount_slider").slider({
handle: "myhandle",
orientation: "horizontal",
range: false,
min: 500,
max: 4999,
value: 500,
step: 1,
animate: true,
change: function (event, ui) {
$("#amount").text(ui.value);
calculate();
},
slide: function (event, ui) {
$("#amountDisp").text(ui.value);
}
});