呵呵!
不可以的
你这样看看效果,
<a href="file:C:\Documents and Settings\Administrator\桌面">桌面 </a>is IE only

解决方案 »

  1.   

    JSP页进行远程协助吗,困难了点吧
      

  2.   

    IE only, 还会弹出警告
    <script type="text/javascript">
    WshShell=new ActiveXObject("WScript.Shell");  
       window.open(WshShell.SpecialFolders("Desktop"));
    </script>
      

  3.   

    只能打开本地的。
    <a href="file:///C:\Documents and Settings\Administrator\桌面">桌面  </a>
      

  4.   

    <script type="text/javascript">
    function openDeskop()
    {
        WshShell=new ActiveXObject("WScript.Shell");  
          window.open(WshShell.SpecialFolders("Desktop"));
    }
    </script>
    <a href="javascript:openDeskop();">桌面 </a> 
    只能在IE下运行
      

  5.   

    一个是远程的HTML实现,一个是本地的桌面,不是一回事
      

  6.   

    [Quote=引用 8 楼 Free_Wind22 的回复:]
    IE only, 还会弹出警告 
    JScript code
    <script type="text/javascript">
        WshShell=new ActiveXObject("WScript.Shell");  
          window.open(WshShell.SpecialFolders("Desktop"));
    </script>
      

  7.   

    换个思路,远程请求客户系统API。不知道可不可以,没试过
      

  8.   


    <a href="file:///C:\Documents and Settings\Administrator\桌面">桌面  </a>