js操作本地txt文件,获取数据(中文)

1.ActiveXObject

兼容性差, IE支持, 不管它

2.使用文本输入框获取(FileReader)

html:

<input type="file" id="file"/>

js:

var fileid = document.getElementById("file");

fileid.onchange = funciton() {
	var file = this.files[0]; //获取文件
	var reader = new FileReader();
	
	var datas ;
	reader.readAsText(file, "gb2312");
	reader.onload = function() {
		datas = reader.result.split('\n');
	}
}
上一篇:Linux基本文件操作练习(附答案分析)


下一篇:shell脚本学习