ajax post提交
Posted 褚牛牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax post提交相关的知识,希望对你有一定的参考价值。
var url = path+"/jxkh/jxkh!getAjaxKhZbk.do"; console.log(url); $.ajax({ url: url,// post这里不是some.do?date="+str type: ‘post‘, data:"zbkId="+zbkId+"&zbkLevel1Id="+zbkLevel1Id+"&zbkLevel2Id="+zbkLevel2Id, async: false, dataType: "text", contentType:"application/x-www-form-urlencoded; charset=utf-8", success: function(data) { data = eval(‘(‘+data+‘)‘); } });
url 是有长度限制的。
get请求能写在url中。
post,是写在data中的。