简单的jquery ajax和php

时间:2016-01-14 16:16:14

标签: javascript php jquery ajax

我只需要在jquery和php文件之间发送和接收数据,但是不起作用。

Jquery代码:

var parametros = {
            "url" : url
    };

$.ajax({
    type: "POST",
    data: parametros,
    url: 'file.php',

    success: function(data) {
        var res = jQuery.parseJSON(data);
        alert(data);
    },
    error: function(e) {
        alert("error");
    }
});

Php文件:

<?php 
$other = "other";
$resultado['url'] = $_POST['url']; 
$resultado['other'] = $other;

echo json_encode($resultado);

?>

我尝试删除“var res = jQuery.parseJSON(data);”行,并且工作正常,这是我的问题吗?

在这种情况下,警报(数据)包含所有php文件,带有php标记。

0 个答案:

没有答案