怎么用JS读写本地文本文件
答案:2 悬赏:0 手机版
解决时间 2021-01-04 00:25
- 提问者网友:遮云壑
- 2021-01-03 03:38
怎么用JS读写本地文本文件
最佳答案
- 五星知识达人网友:千杯敬自由
- 2021-01-07 02:41
采用jquery的ajax方式进行文件信息读取
代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#b01").click(function(){
htmlobj=$.ajax({url:"/jquery/test1.txt",async:false});
$("#myDiv").html(htmlobj.responseText);
});
});
</script>
</head>
<body>
<div id="myDiv"><h2>通过 AJAX 改变文本</h2></div>
<button id="b01" type="button">改变内容</button>
</body>
</html>
代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#b01").click(function(){
htmlobj=$.ajax({url:"/jquery/test1.txt",async:false});
$("#myDiv").html(htmlobj.responseText);
});
});
</script>
</head>
<body>
<div id="myDiv"><h2>通过 AJAX 改变文本</h2></div>
<button id="b01" type="button">改变内容</button>
</body>
</html>
全部回答
- 1楼网友:夜风逐马
- 2021-01-07 03:38
//读文件
var fso, f1, ts;
var forreading = 1;
fso = new activexobject("scripting.filesystemobject");
ts = fso.opentextfile(document.all.attachfile.value, forreading);
document.all.mailbdy.value=ts.readall();
ts.close();
//写文件
var title = document.getelementbyid("title").value;//文件名
var fso=new activexobject("scripting.filesystemobject");
var f=fso.createtextfile("c://"+title+".nc",true); //可随意选择后缀名
f.write(document.getelementbyid("babala").value);
f.close();
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯