ajax 多参数提交

$.ajax({
						url : 'selectPackages',
						data : {
							action : 'detail',
							type : '${requestScope.type}',
							id : '${ordinary.packagesId}',
							phone : '${requestScope.phone}',
							phoneid : '${}'
						},
						dataType : 'json',
						success : function(response) {
							alert();
						}
					});

你可能感兴趣的:(Ajax)