jquery-ajax

$.ajax({
		async:false,  //异步或是同步,默认为异步
 		url:"/account/profile.do",
 		data:{ fieldName:fieldNameV,content:contentV},
 		type:"post",
 		dataType:"text",
 		success:function(data){
 			if(data=="1")return true;
 			else return false;
 		}
 	});
 

你可能感兴趣的:(java,jquery,Ajax,Flash)