1)http://sourceforge.net/projects/magicajax
让magicajax支持中文的几种方式汇总:
At 'AjaxCallObject.js', change the EncodePostData function either to:
AjaxCallObject.prototype.EncodePostData = function(data)
{
return escape(data).replace(/\+/ig, '%2B');
}
或者:
AjaxCallObject.prototype.EncodePostData = function(data)
{
return encodeURIComponent(data);
}
2)http://www.zumipage.com/download.htm (这个控件已经把所有的实现封装起来了,使用非常的简单,只要把页面从它提供的类中继承过来就行,不过这个控件要花银子的)
让magicajax支持中文的几种方式汇总:
At 'AjaxCallObject.js', change the EncodePostData function either to:
AjaxCallObject.prototype.EncodePostData = function(data)
{
return escape(data).replace(/\+/ig, '%2B');
}
或者:
AjaxCallObject.prototype.EncodePostData = function(data)
{
return encodeURIComponent(data);
}
2)http://www.zumipage.com/download.htm (这个控件已经把所有的实现封装起来了,使用非常的简单,只要把页面从它提供的类中继承过来就行,不过这个控件要花银子的)