利用网页(html或者js)如何打开本地磁盘
通过网页打开客户端的本地磁盘,或者我的电脑,用html可以,用JavaScript也行……如果是网上其它地方copy的就不要回答了,自己验证通过再说asp也可以只要是网页...
通过网页打开客户端的本地磁盘,或者我的电脑,用html可以,用JavaScript也行……
如果是网上其它地方copy的就不要回答了,自己验证通过再说
asp也可以 只要是网页打开客户端的都可以
二楼的好像也不行哦 你试试看
不是三楼说的那样,是要打开一个窗口,直接弹出我的电脑
四楼的我想问一下,这样是打开的网络客户端的不? 展开
如果是网上其它地方copy的就不要回答了,自己验证通过再说
asp也可以 只要是网页打开客户端的都可以
二楼的好像也不行哦 你试试看
不是三楼说的那样,是要打开一个窗口,直接弹出我的电脑
四楼的我想问一下,这样是打开的网络客户端的不? 展开
推荐于2016-09-27 · 知道合伙人软件行家
关注
展开全部
以下代码仅供参考:
供你参考:<html>
<head>
<title>打开本地磁盘</title>
</head>
<body bgcolor=e0e0ff oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
<center>
<table border=1 bordercolor=7070ff width=500>
<tr align="center" height="30">
<td>
<input type=submit value="打开C盘" onClick="open_disk('c')">
</td>
</tr>
</table>
</center>
</body>
</html>
<script>
function open_disk(disk)
{
try
{
window.open('file://'+disk+':\\');
}
catch(e)
{
try{window.open('file:///'+disk+':');}catch(e){alert("打不开我也没办法了:(");}
}
}
</script>
供你参考:<html>
<head>
<title>打开本地磁盘</title>
</head>
<body bgcolor=e0e0ff oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
<center>
<table border=1 bordercolor=7070ff width=500>
<tr align="center" height="30">
<td>
<input type=submit value="打开C盘" onClick="open_disk('c')">
</td>
</tr>
</table>
</center>
</body>
</html>
<script>
function open_disk(disk)
{
try
{
window.open('file://'+disk+':\\');
}
catch(e)
{
try{window.open('file:///'+disk+':');}catch(e){alert("打不开我也没办法了:(");}
}
}
</script>
展开全部
<input type="file" id="myfile" id="input1" value="浏览文件">
这样的可以。。不知道是你要的么~~~
这样的可以。。不知道是你要的么~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ASP.NET C#打开"我的电脑"
System.Diagnostics.Process.Start(@"C:\windows\explorer.exe", "/e,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}");
System.Diagnostics.Process.Start(@"C:\windows\explorer.exe", "/e,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}");
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form action="file:///c|/"><input type="submit" value="c:\ drive"></form> 保存为.html用IE6打开你点下试试。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以下代码仅供参考:
供你参考:<html>
<head>
<title>打开本地磁盘</title>
</head>
<body
bgcolor=e0e0ff
oncontextmenu="return
false"
ondragstart="return
false"
onselectstart="return
false">
<center>
<table
border=1
bordercolor=7070ff
width=500>
<tr
align="center"
height="30">
<td>
<input
type=submit
value="打开C盘"
onClick="open_disk('c')">
</td>
</tr>
</table>
</center>
</body>
</html>
<script>
function
open_disk(disk)
{
try
{
window.open('file://'+disk+':\\');
}
catch(e)
{
try{window.open('file:///'+disk+':');}catch(e){alert("打不开我也没办法了:(");}
}
}
</script>
供你参考:<html>
<head>
<title>打开本地磁盘</title>
</head>
<body
bgcolor=e0e0ff
oncontextmenu="return
false"
ondragstart="return
false"
onselectstart="return
false">
<center>
<table
border=1
bordercolor=7070ff
width=500>
<tr
align="center"
height="30">
<td>
<input
type=submit
value="打开C盘"
onClick="open_disk('c')">
</td>
</tr>
</table>
</center>
</body>
</html>
<script>
function
open_disk(disk)
{
try
{
window.open('file://'+disk+':\\');
}
catch(e)
{
try{window.open('file:///'+disk+':');}catch(e){alert("打不开我也没办法了:(");}
}
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询