标签:
$(‘button‘).on(‘click‘, function(event) {
event.preventDefault();
/* Act on the event */
$.ajax({
url: ‘/ajax/test‘,
type: ‘get‘,
dataType: ‘json‘,
success:function(data){
$(‘div‘).html(data.tips);
},
error:function(data){
alert(‘error‘);
}
});
});
app.get(‘/ajax/test‘,function(req,res){
var ajaxTest={
tips:"you are not alone"
};
res.send(ajaxTest);
});
标签:
原文地址:http://www.cnblogs.com/xuange306/p/5975828.html