87,996
社区成员
发帖
与我相关
我的任务
分享$('#test1').click(function() {
$.ajax({
type:'GET',
cache:false,
url:'ajax.php',
data:'name=测试中文',
success:function(msg){
alert(msg);
}
});
});
$('#test1').click(function() {
$.ajax({
type:'POST',
cache:false,
url:'ajax.php',
data:'name=测试中文',
success:function(msg){
alert(msg);
}
});
})