ある種の登録フォームを作成しています。名前などに FORM タグを使用しました。スライダーも必要です。jqueryでスライダーを作成しました。PHPスクリプトのFORMタグ入力からのように、このスライダーから値を「転送」する方法はありますか? ありがとう
<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);
}
});