我需要向 ajax 函数发送两个参数。如何获取我的 Php 文件中的值?我只是写 $comment=$_GET["comment"]; 但这并没有发送书面价值。
我的原型脚本如下:
comment= $F('comment'); //text from textarea
name= $F('name'); // text from text box
var ajaxUrl = 'addcomment.php';
new Ajax.Request(ajaxUrl,
{
method:'post',
parameters: {comment: comment, name: name},
onSuccess: function(data){
alert(data.responseText);
}
});
php:
$comment=$_GET["comment"];