douhuan1937 2016-04-21 08:08 采纳率: 0%
浏览 61
已采纳

Ajax jquery mysqli更新

I'm trying to do a Ajax demo to teach myself the concept but I just can't make it work.

The sample I'm trying to get is to take a variable on the first page (in this case, the colour green) and if the green button is clicked, use that on the ajax processing page to record somehow that the green button was clicked (currently in the error log, then I'll move onto storing it in a database).

Ideally I'd like to be able to reuse the same snippet to change the variable to red, and have the error log report that the red button was pressed.

I've used the location.reload and the random number to prove to myself that the javascript is executing, and that the page is different with each load.

I'm not a javascript guy at all, you may be able to tell. Do I need to declare the a variable first or something else entirely?

uglytest.php

<script src="https://code.jquery.com/jquery-2.2.3.js"></script>
<!-- jQuery Ajax -->
<script type="text/javascript">
function clickyes(a) {
$.ajax({
       type: "POST",
       url: "./ajax.php",
       data: {"test":a},
       success: function (response) {
       default = $("#default").val();
       });
    location.reload();
}
</script>

<script type="text/javascript">
function clickno() {
    location.reload();
}
</script>


<?
echo mt_rand(0,99);
$result = "green"; 

echo "<p><form>here's a $result button. Do you want click on it?</p>";
echo "<button onclick=\"clickyes(" . $result . ")\" style=\"background-color: $result; \">Yes</button>";
echo "<button onclick=\"clickno()\">No</button></form>";

?>

ajax.php

<?
  $test = $_POST['test'];
   error_log($test, 0);
?>
  • 写回答

3条回答 默认 最新

  • drfkl66684 2016-04-21 10:48
    关注

    changes here:

    function clickyes(a) {
    $.ajax({
           type: "POST",
           url: "./ajax.php",
            data: {test:a},
           success: function () {
               location.reload();
           }
           });
    }
    

    and here:

    echo "<p><form>here's a $result button. Do you want click on it?</p>";
    echo "<button onclick=\"clickyes('$result')\" style=\"background-color: $result; \">Yes</button>";
    echo "<button onclick=\"clickno('$result')\">No</button></form>";
    

    made it work. Hooray!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法