我有一个变量用户,我可以在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;
});
});
答案 0 :(得分:0)
您必须先将变量传递给脚本:
$.get('mLoad.php', {variable:'data'}, function(response){
$('#message_area').html(response);
});