Home  >  Article  >  Web Front-end  >  JavaScript code to display the directory selection dialog box_javascript skills

JavaScript code to display the directory selection dialog box_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:58:501263browse
Copy code The code is as follows:

function seldir() //Select directory
{
var Dir;
var objSrc= new ActiveXObject("Shell.Application").BrowseForFolder(0,'Select the directory', 0, '');
if (objSrc!=null)
{
Dir = objSrc.Items().Item().Path;
alert(Dir);
}
}



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn