当前位置: 代码迷 >> Ajax >> 利用jquery的ajax提交页面下的表单
  详细解决方案

利用jquery的ajax提交页面下的表单

热度:324   发布时间:2012-10-31 14:37:31.0
利用jquery的ajax提交页面上的表单
$.ajax({
	type:'POST',
	url:'downloadWaveData.action',
	data:$('#downListForm').serialize(),
	success: function(){
		alert("data post ok.");
	}
	
});
  相关解决方案