<div class="codetitle"> <span><a style="CURSOR: pointer" data="57645" class="copybut" id="copybut57645" onclick="doCopy('code57645')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code57645"> <br>function seldir() //选择目录 <br>{ <br>var Dir; <br>var objSrc= new ActiveXObject("Shell.Application").BrowseForFolder(0,'Select the directory', 0, ''); <br>if (objSrc!=null) <br>{ <br>Dir = objSrc.Items().Item().Path; <br>alert(Dir); <br>} <br>} <br> </div> <br><br><br>