php ajax学习问题?

ajax能不能让值从js中传递到php文件中? 如何传值?给个实例看看~~~
2024-12-26 07:19:13
推荐回答(2个)
回答1:

ajax的常用框架有两种,prototype.js/jquery.js,不知道你要哪一种,类似的方式如下:
pro
new Ajax.Request('/some_url',
{
method:'get',
onSuccess: function(transport){
var response = transport.responseText || "no response text";
alert("Success! \n\n" + response);
},
onFailure: function(){ alert('Something went wrong...') }
});

jquery
$.ajax({
type : 'GET',
dataType : 'json',
data : data,
url : '{# $update_url #}',
success : function (rtn) {
if ( rtn.status == 'error' ){
alert(_msgStr[rtn.msgno]);
} else if (rtn.status == 'success') {
alert(_msgStr[rtn.msgno]);
location.reload(true);
}
},

回答2:

没看懂你说的意思 给你个我用过的方法 你试试 能不能解决你的问题

function del_comment()
{
if(c == '')
{
return;
}
ajax = createXMLHttpRequest();
ajax.open("GET","delcomment.php?key=" + c,true);
ajax.onreadystatechange = loadingName;
ajax.setRequestHeader("If-Modified-Since","0");
ajax.send(null);
}

看到那个 delcomment.php?key=" + c 你看是不是这个意思