http://expert.csdn.net/Expert/topic/1659/1659212.xml?temp=.7245752

解决方案 »

  1.   

    SORRY,没看清楚
    你要用FSO读出来,然后把值赋给textarea
    但是客户端用FSO会有安全提示
      

  2.   

    可以通过插入式框架<form name=form>
    <input type=file name=file>
    <input type=button value=装入 onClick="document.frames.xxx.location = document.form.file.value">
    <textarea name=text cols=60 rows=10></textarea>
    <iframe name=xxx src="" style="display:none" onLoad="document.form.text.value = document.frames.xxx.document.body.innerText"></iframe>
    </form>