什么是成功的回应:ajax中的函数(响应)

时间:2016-03-27 14:13:18

标签: jquery ajax url

我不确定我是否正确。我正在通过ajax的网址' GET'请求和URL具有一些查询参数(?abc =' a')。但是当我成功执行console.log(响应)时:function(response){console.log(response)}。响应不包含abc值。

1 个答案:

答案 0 :(得分:0)

我将向您展示一个在控制台数据上用ajax显示的示例:

<script type="text/javascript">
    //this the DOM
    $(function(){

        $('body').on('click', '.action_button', function() {
            $x = {
                key:'show',
                values:$('.values').val()
            }; $.post('ajax.php', $x, function(response) {
                console.log(response);
            });
        });

    });
</script>


<?php 
    //your php file in ajax.php (another file)
    $key = $_POST['key'];

    switch ( $key ) :
        case 'show' :
            $values = $_POST['values'];
            echo $values;
        break;
    endswitch;
 ?>

HTML就在这里

<input type="text" class="values" placeholder="Give me some values">
<input type="button" class="action_button" value="Click me for show the links">