jsp用ajax向后台传数据的格式

<script type="text/javascript">
$.ajax(
{
  url: "test.action",
  async:true,
  cache:false,
  type:'post'
  dataType:'text',
  data:{
     参数名:值, 参数名:值

},//这里就需要传{a:aValue}
success:function(json){
   //成功后调用
   var obj = $.parseJSON(json);  //使用这个方法解析json
   var state_value = obj.result;  //result是和action中定义的result变量的get方法对应的
}
})

</script>


 
 

你可能感兴趣的:(jsp,Ajax,idea,intellij,前后台交互)