javascript打开本地应用
时间:2014-05-18 09:57:59
收藏:0
阅读:285
function openShell(){
if(window.ActiveXObject){var cmd = new ActiveXObject(‘WScript.Shell‘)
cmd.Run("D://XmanagerEnterprise4//Xftp.exe")
}
else{
alert("浏览器不支持自动上传!")
}
}
评论(0)