我正在尝试编写一个简单的函数,其中ajax将参数发送到PHP服务,然后PHP请求MySQL获取数据并将结果发送到ajax函数。我对AJAX没有太多了解。任何人都可以提供示例代码或链接。
答案 0 :(得分:1)
有关不使用框架的基础知识,请参阅http://www.w3schools.com/ajax/default.asp
我建议使用jQuery之类的JS库,因为这可以极大地简化你的代码。
查看jQuery如何在这里实现ajax - http://api.jquery.com/jQuery.ajax/
答案 1 :(得分:1)
我会尝试jQuery,试试这段代码:
//Listen when a button, with a class of "myButton", is clicked
//You can use any jQuery/JavaScript event that you'd like to trigger the call
$('.myButton').click(function() {
//Send the AJAX call to the server
$.ajax({
//The URL to process the request
'url' : 'page.php',
//The type of request, also known as the "method" in HTML forms
//Can be 'GET' or 'POST'
'type' : 'POST',
//Any post-data/get-data parameters
//This is optional
'data' : {
'paramater1' : 'value'
'parameter2' : 'another value'
},
//The response from the server
'success' : function(data) {
//You can use any jQuery/JavaScript here!!!
if (data == "success") {
alert('request sent!');
}
}
});
});
希望有所帮助,
spryno724