ajax 的两种方式

前端之家收集整理的这篇文章主要介绍了ajax 的两种方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、

$('input').blur(function(){

$.ajax({
type: "GET",
url: "/10.PHP",
data: "1=a&2=b",
success: function(msg){
//alert( "Data Saved: " + msg );
}
});

})

2、

$('input').blur(function(){

//类型、URL、数据 $.get('25.PHP?u='+this.value,function(msg){ // alert(msg); if(msg == '1') { $('#reg').html('<font color="red">已被注册</font>'); } else { $('#reg').html('<font color="green">可用</font>'); } }); });

原文链接:https://www.f2er.com/ajax/163265.html

猜你在找的Ajax相关文章