如何通过ajax在可加载文件中发送$ user的变量?

时间:2014-05-04 08:54:01

标签: javascript php jquery ajax

我有一个变量用户,我可以在mPost.php文件中发送它,但是如何在此脚本启动之前将其发送到可加载的mLoad.php文件中。感谢。

$(document).ready(function(){
$("#message_area").load('mLoad.php');

$("#userArea").submit(function(){
    $.post('mPost.php', $('#userArea').serialize(), function(data){
        $("#message_area").append(data);
        });

    return false;
});
}); 

1 个答案:

答案 0 :(得分:0)

您必须先将变量传递给脚本:

$.get('mLoad.php', {variable:'data'}, function(response){
    $('#message_area').html(response);
});