<object id="fileDialog" width="0px" height="0px" classid="clsid:F9043C85-F6F2-101A-A3C9-08002B2F49FB" codebase="http://activex.microsoft.com/controls/vb5/comdlg32.cab">
</object>
<textarea id=TxtBody style="background-color:#EEEEEE;width:100%;height:100">无标题</textarea>
<br>
<input type=button value=加载 onclick="loadDoc()">
<input type=button value=保存 onclick="saveDoc()">
<script>
function loadDoc()
{
fileDialog.CancelError=true;
    try{
    fileDialog.Filter="HTM Files (*.htm)|*.htm|Text Files (*.txt)|*.txt";
     fileDialog.ShowOpen();
    var fso=new ActiveXObject("Scripting.FileSystemObject");
    var reading=1;
    var f=fso.OpenTextFile(fileDialog.filename,reading);
    //window.confirm(f);
    var r=f.ReadAll();
    f.close();
    TxtBody.value=r;
    }catch(e){}
}
function saveDoc()
{
fileDialog.CancelError=true;
   try{
   fileDialog.Filter="HTM Files (*.htm)|*.htm|Text Files (*.txt)|*.txt";
   fileDialog.ShowSave();
   var fso=new ActiveXObject("Scripting.FileSystemObject");
   var f=fso.CreateTextFile(fileDialog.filename,true);
   f.write(TxtBody.value);
   f.Close();
   }
   catch(e){}
}
</script>
</body>

解决方案 »

  1.   

    你要打开的文件是什么类型呢?可以打开txt,htm等文本格式.<HTML XMLNS:IE><SCRIPT>
        function onDownloadDone(s) { 
    content.value=s;
    }
    </SCRIPT>
    <textarea name="content" cols=30 rows=20></textarea>
    <IE:Download ID="oDownload" STYLE="behavior:url(#default#download)" />
    <input type=file name='p'><input type=button value="open" onclick="oDownload.startDownload(p.value, 
    onDownloadDone)">
    打开浏览器支持的图像格式<input type="file" name="myfile">
    <input type="button" onclick="document.all.img.src=document.all.myfile.value"
    value="Open">
    <img name="img"/>