我写了一个脚本来读取文本文件。 如果内容为英语,则其效果很好,但是当内容为希伯来语时,其阅读效果则不佳。 我希望它获得utf-8字符集怎么办?
<script>
var fso =new ActiveXobject("Scripting.FileSystemObject");
function ReadFile(filepath)
{
var file=fso.OpenTextFile(filepath,1,false);
var fileContent=file.RreadAll();
file.close();
Return fileContent;
}
</script>