当前位置: 代码迷 >> Ajax >> jquery ajax以text参数模式提交
  详细解决方案

jquery ajax以text参数模式提交

热度:197   发布时间:2012-06-26 10:04:13.0
jquery ajax以text参数方式提交
$("#submitbtn").click(function(){
    	var money = $("#money").attr("value");
	var txttype = $("#txttype").attr("value");	    	
	    var param = [
		 { name : 'money ', value : money}
		,{ name : 'txttype', value : txttype}
		];
		$.ajax({
			type: 'post',
			url: 'toSub.action',
			data: param,
			dataType: 'text',
			success: function(text){alert("操作成功");},
			error: function(text) {alert("操作未成功");}
		});


黑色头发:http://heisetoufa.iteye.com/
  相关解决方案