1

我尝试将值从我的滑块发送到带有查询帖子的 saveprofile.php 文件。

这是我的小提琴:http: //jsfiddle.net/uzq7yym3/

这里是jquery post的代码片段:

     $(document).ready(function(){
         var einestundeslider = document.getElementById('slider_einestunde');
        $("#saveprofilebutton").click(function(){
            $.post('saveprofile.php', 'val=' + einestunde.noUiSlider.get(), function (response) {
      alert(response);
   });
});
          });

saveprofile.php 看起来像这样:

   $value = $_POST['val'];
   echo "I got your value! $value";

但我什么也没收到:/

4

1 回答 1

2

根据 JS fiddle,您在此行末尾的 html 语法中缺少“>”: <div id="slider_einestunde"></div

所以Html代码应该是这样的:

<form action="saveprofile.php">
<div id="slider_einestunde"></div>

其次,您使用错误的变量名来获取值,实际值为:'einestundeslider' 但您使用的是'einestunde'

固定版本的 JS 小提琴:http: //jsfiddle.net/48n4jp33/

于 2015-08-05T21:28:36.857 回答