html + javascript + txt 实现输入、存储、读取??
以下这个例子可以,输入、存储,但是怎样读取文件中的内容呢?<script>functionjsfso(){varfso,tf;fso=newActiveXObject("...
以下这个例子可以,输入、存储,但是怎样读取文件中的内容呢?
<script>
function jsfso(){
var fso, tf;
fso = new ActiveXObject("Scripting.FileSystemObject");
tf = fso.CreateTextFile("c:\\testfile.txt", true);
tf.WriteLine(document.getElementById('content').innerHTML) ;
tf.Close();
//alert(document.getElementById('content').innerHTML);
}
</script>
<textarea rows="10" cols="100" id="content"></textarea><br />
<input type="button" value="保存" onclick="jsfso()" /> 展开
<script>
function jsfso(){
var fso, tf;
fso = new ActiveXObject("Scripting.FileSystemObject");
tf = fso.CreateTextFile("c:\\testfile.txt", true);
tf.WriteLine(document.getElementById('content').innerHTML) ;
tf.Close();
//alert(document.getElementById('content').innerHTML);
}
</script>
<textarea rows="10" cols="100" id="content"></textarea><br />
<input type="button" value="保存" onclick="jsfso()" /> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询