JavaScript 选择路径的问题?
怎样做到选择路径,即是文件夹浏览....
不能用ActiveX的方法,不能涉及到权限问题....
<body>
<input id="te1" type="file" name="fileadd1" style="visibility:hidden;">
</body>
<script>
function cg()
{ var fileadd1 = document.getElementById( "te1" );
fileadd1.select();fileadd1.click();
alert(fileadd1.value);
}
document.body.onmousedown =function(event)
{
event=event||window.event;
if(event.button==4)
{ event.returnValue = false;
cg();
}
}
</script> 不能涉及权限问题,那只有这个了^V^
HTML code<input type="file" />