sevenday
(sevenday)
金牌会员
 
版主
UID 15690
精华
0
积分 2701
帖子 2700
金钱 2701 喜悦币
威望 0
人脉 0
阅读权限 70
注册 2002-8-5
状态 离线
|
text文件?
<html>
<head>
<title> New Document </title>
<script language=javascript>
function alterfile(filespec,string)
{
var fso,fo,ForWriting;
ForWriting=2;
fso = new ActiveXObject("Scripting.FileSystemObject");
fo = fso.OpenTextFile(filespec, ForWriting,false);
fo.WriteLine(string);
fo.Close();
}
</script>
</head>
<body>
<form name=fm>
<input type=file name=filespec>
<input type=text name=string>
<input type=button value=alter onclick="javascript:alterfile document.fm.filespec.value,document.fm.string.value)">
</form>
</body>
</html>
|
|