jqujery ajax使用实例

1.js调用ajax

$("#submit").click(function(){	
	$.ajax({  
		url:'/ycf/push_news',
		data:{  
			"title":title,            //参数形式:参数名:参数值
			"from":from,  
			"stockCode":stockCode,  
			"content":content,
			"push":push
		},  
		type:'post',  
		dataType:'json',         //接收数据形式:我设置成了json。
		success:function(data) {  
			alert(data.msg);   
		},  
		error:function() {  
			alert("访问后台异常");  
		}  
	});
)}



2. java后台给ajax返回参数
	JSONObject jsonObject = new JSONObject();
    	jsonObject.put("msg", "插入成功");          //返回了一个键为msg的,值是 “插入成功”的信息。 ajax用 data.msg获取信息

        PrintWriter out = response.getWriter();		
        out.print(jsonObject);
        
	out.flush();
        out.close();

 
  

你可能感兴趣的:(ajax,实例,java)