多谢,多谢,
我又看了看,我刚才提供的信息有些有错误。
见下面这一小段:
xhr = new XMLHttpRequest();
xhr.open("post", "/oid/handle_oid_request", true);
xhr.setRequestHeader("Content-Type", "text/plain;charset=gb2312");
var form = document.getElementById("myForm");
var seriedtext = serialize_plaintext(form);
log.profile( 'seried text = ' + seriedtext);
xhr.send(seriedtext);
我发现 log 出来的还是对的,2 字节编码。
看样子问题在 send 这一块。
我已经根据网上找到的东西,给 xhr 加了个 RequestHeader,但还是不对。
【 在 shaolin 的大作中提到: 】
: accept-charset
:
http://www.w3.org/TR/html4/interact/forms.html#h-17.13: 有所提及
: ...................
--
FROM 106.3.77.*