警报返回数据JQuery - ajax

时间:2011-06-05 11:40:29

标签: jquery

我有一个php文件process.php,它根据输入字符串从$_POST["name"]返回一个数字模式。我想用jQuery提醒返回号码。我怎么能这样做?

提前致谢..

blasteralfred

1 个答案:

答案 0 :(得分:0)

怎么样

$.post('/process.php', { input: 'your input' }, function(data) {
    alert(data);
}, 'text');