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 (这个控件已经把所有的实现封装起来了,使用非常的简单,只要把页面从它提供的类中继承过来就行,不过这个控件要花银子的)

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-21
猜你喜欢
  • 2021-07-20
  • 2022-12-23
  • 2022-01-24
  • 2021-06-24
  • 2021-12-27
  • 2022-03-05
相关资源
相似解决方案