$(function(){
//按钮单击时执行
$("#testAjax").click(function(){
//Ajax调用处理
var html = $.ajax({
type: "GET",
url: "login22.php",
async: false,
dataType:"json",
success:function (msg) {
alert(msg);
}
}).responseText;
$("#mySpan1").html(html);
$("#mySpan2").html(html);
});
});
李晓健