`
tianshibaijia
  • 浏览: 1128270 次
文章分类
社区版块
存档分类
最新评论

jquery post提交解决方法

 
阅读更多

public static String unescape(String src) {

StringBuffer tmp = new StringBuffer();

tmp.ensureCapacity(src.length());

int lastPos = 0, pos = 0;

char ch;

while (lastPos < src.length()) {

pos = src.indexOf("%", lastPos);

if (pos == lastPos) {

if (src.charAt(pos + 1) == 'u') {

ch = (char) Integer.parseInt(src

.substring(pos + 2, pos + 6), 16);

tmp.append(ch);

lastPos = pos + 6;

} else {

ch = (char) Integer.parseInt(src

.substring(pos + 1, pos + 3), 16);

tmp.append(ch);

lastPos = pos + 3;

}

} else {

if (pos == -1) {

tmp.append(src.substring(lastPos));

lastPos = src.length();

} else {

tmp.append(src.substring(lastPos, pos));

lastPos = pos;

}

}

}

return tmp.toString();

}

页面上肯定

function doTest(){

var test1=jQuery("#id").val();

var test=jQuery("#testId").val();

jQuery.ajax({

url:url;

type:'POST',

async:true,

data:{"test":escape(test),"test1":test1},

timeout: 20000,

error: function(){

alert("修改客户信息失败!");

},

success: function(){

alert("修改客户信息成功!");

}

});

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics