我正在使用IIS服务器,只用JavaScript编写少量测试页。
xmlhttp.open("GET", encodeURIComponent(foo), true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=utf-8");
xmlhttp.send();
此xmlHttp请求获取文本文件的内容(以unicode格式保存)。虽然我能够获取文件的内容,但有些字符像'看起来很奇怪的问号标记。
在回复标题中我可以看到:
Content Type: application/x-javascript
此更新中的数据具有以下元标记的页面:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
感谢您的时间。