<(&quot是什么意思;&quot是什么意思;&quot是什么意思;ρ&quot是什么意思;&quot是什么意思;&quot是什么意思;>大 众 团 购 网 退 款 热 线 是 多 少<(&quot是什么意思;&quot是什么意思;&quot是什么意思;&rho

&form id="formHead" action="ashx/UpLoad.ashx" method="post" &
&input id="File1" name="fileUp" type="file"
&input type="submit" value="上传供应商" /&
//UpLoad.ashx 文件
using System.Collections.G
using System.L
using System.W
using System.Web.S
using System.Windows.F
namespace 入库管理.ashx
/// &summary&
/// $codebehindclassname$ 的摘要说明
/// &/summary&
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class 上传数据到供应商数据库 : IHttpHandler
public void ProcessRequest(HttpContext context)
//context.Response.ContentType = "text/plain";
if (context.Request.Files.Count&0)
MessageBox.Show(context.Request.Files["fileUp"].FileName);
context.Request.Files["fileUp"].SaveAs(context.Server.MapPath(@"~/UserFileHere/Image/" + context.Request.Files["fileUp"].FileName));///
MessageBox.Show("No--没有文件");
context.Response.Redirect("~/importFactory.aspx");
public bool IsReusable
return false;
//每次都传不上文件啊!
可以用swfupload组件。
&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data" &
&input id="File1" name="fileUp" type="file"
&input type="submit" value="上传供应商" /&&/form&
引用 1 楼 qrf0211 的回复:
可以用swfupload组件。
swfupload 是什么东东?不有见过啊!
引用 2 楼 beyond_me21 的回复:
&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data" &
&input id="File1" name="fileUp" type="file"
&input type="submit" value="上传供应商……
enctype 不是有效的input 属性!---出错啦
&form id="formHead" action="upLoad.ashx" method="post" enctype="multipart/form-data"&
&input id="File1" name="fileUp" type="file" /&
&input type="submit" value="上传供应商" /&
&/form&&%@ WebHandler Language="C#" Class="upload" %&using Susing System.Wusing System.Web.S[WebService(Namespace = "http://tempuri.org/")][WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]public class upload : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
if (context.Request.Files.Count & 0)
context.Request.Files["fileUp"].SaveAs(context.Server.MapPath(@"~/" + context.Request.Files["fileUp"].FileName));
public bool IsReusable {
}}有文件的啊
可以找一下异步通讯方面的资料。比如信箱上传附件就是用的这个技术。
断点跟踪一下,我也这样用,没问题!!
&form id="form1" runat="server" method="post" enctype="multipart/form-data" action="Files.ashx"&
参考国外批量无刷新上传控件
我在ASP.NET 里面看见 MessageBox.Show()了
oh,my lady gaga! 老婆给我上点眼药水
引用 10 楼 pengqian098 的回复:
我在ASP.NET 里面看见 MessageBox.Show()了
oh,my lady gaga! 老婆给我上点眼药水
你也可以自己封装一个Message.Box.Show()
引用 4 楼 hetengfei_ 的回复:
引用 2 楼 beyond_me21 的回复:&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data" &&input id="File1" name="fileUp" type="file" /&&input type="submit" value="上传供应……
的确不是input上的,是form属性,表示表单提交时的编码类型enctype="multipart/form-data"设置表单的MIME编码。默认情况,这个编码格式是application/x-www-form-urlencoded
引用 10 楼 pengqian098 的回复:
我在ASP.NET 里面看见 MessageBox.Show()了
oh,my lady gaga! 老婆给我上点眼药水
我也是找不到我上传的文件,只好用MessageBox.Show()来测试有没有上传文件的!
引用 10 楼 pengqian098 的回复:
我在ASP.NET 里面看见 MessageBox.Show()了
oh,my lady gaga! 老婆给我上点眼药水
哈哈 我也看到了
引用 10 楼 pengqian098 的回复:
我在ASP.NET 里面看见 MessageBox.Show()了
oh,my lady gaga! 老婆给我上点眼药水
可以的,只要你引用 Window.Form.dll网站不也是个软件嘛
引用 2 楼 beyond_me21 的回复:
&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data" &
&input id="File1" name="fileUp" type="file"
&input type="submit" value="上传供应商……
太谢谢了!,果然上传了
想追问下:怎样做到真正的无刷新,用Jquery 的$.post 方法来提交表单,但怎样把
&input id="File1" name="fileUp" type="file" /&
&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data"&
&input id="File1" name="fileUp" type="file" /&
&input type="button" value="上传供应商" id="btnFileUp" /&
JScript code
$(function() {
$("#btnFileUp").click(function(){
$.post("ashx/UpLoad.ashx",function(data, Status){
if(Status=="success")
alert("成功!");
alert("失败!");
// 虽然到了alert("成功!");//
还是不见传上的文件,怎将&input id="File1" name="fileUp" type="file" /& 带上。
想要无刷新,就要用iframe来模拟
引用 18 楼 beyond_me21 的回复:
想要无刷新,就要用iframe来模拟
太谢谢了!
引用 15 楼 wknight_it 的回复:
引用 10 楼 pengqian098 的回复:我在ASP.NET 里面看见 MessageBox.Show()了oh,my lady gaga! 老婆给我上点眼药水可以的,只要你引用 Window.Form.dll网站不也是个软件嘛
原来是这样子 又学习了 我刚转web不久 thanks!
我有,要的找我发给你
引用 21 楼 skybi1985 的回复:
我有,要的找我发给你
是无刷新源码吗?谢谢啦!我的Email :c_oo_
用iframe已经非常简单的了,还需要源码吗?在你的页面里放一个iframe,并把它隐藏起来&iframe name="uploadfrm"
id="uploadfrm" style="display:none "&&/iframe&然后&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data" target="uploadfrm"&
&input id="File1" name="fileUp" type="file" /&
&input type="button" value="上传供应商" id="btnFileUp" /&&/form&关健是红色部分
引用 23 楼 beyond_me21 的回复:
用iframe已经非常简单的了,还需要源码吗?在你的页面里放一个iframe,并把它隐藏起来&iframe name="uploadfrm"
id="uploadfrm" style="display:none "&&/iframe&然后&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="mu……
学习了!原来iframe
可以当&input type="hiden" name="v"&用啊!
引用 23 楼 beyond_me21 的回复:
用iframe已经非常简单的了,还需要源码吗?在你的页面里放一个iframe,并把它隐藏起来&iframe name="uploadfrm"
id="uploadfrm" style="display:none "&&/iframe&然后&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="mu……
我再问问,我已试了,你的方法的确可行,但是,我怎么取得返回数据呢(ashx -------&html)的数据,即是我想知道是不是成功上传了一去。而不是页面一闪而过,什么都没有看到。谢谢你了!
路过 学习了
引用 25 楼 hetengfei_ 的回复:
引用 23 楼 beyond_me21 的回复:用iframe已经非常简单的了,还需要源码吗?在你的页面里放一个iframe,并把它隐藏起来&iframe name="uploadfrm"
id="uploadfrm" style="display:none "&&/iframe&然后&form id="formHead" action="ashx/UpLoad.ash……
可以在ashx页面输出一段js脚本比如Response.Write("&script&alert('上传成功');&/script&")当然你也可以输出其它js脚本,比如把上传后生成的新的文件名赋值在父页面的文本框等
引用 27 楼 beyond_me21 的回复:
引用 25 楼 hetengfei_ 的回复:引用 23 楼 beyond_me21 的回复:用iframe已经非常简单的了,还需要源码吗?在你的页面里放一个iframe,并把它隐藏起来&iframe name="uploadfrm"
id="uploadfrm" style="display:none "&&/iframe&然后&form id="formHe……
Very good!你的法方成功!--Q&_;_&Q我还要问问,如果我不想用 “alert("OK");” 来返回数据,我想做的是仓库管理系统我是要把Excel 文件上传,再用NOPI 读取文件数据,并且数据返加到我上传页面,以便查看有没有格式不对的,哪些是不能上传的。然后再点excel 导入到数据库--执行导入问题出再我传上文件,读了文件数据(这些是无刷新做的)我就不能用(Response.Write("ok");Response.Write("no");)因为这样在在html页 得不到 我返回的数据。Response.Write(alert("OK"));” 固然可以在html弹出对话框,但文字没法进入html页 -- 用table 展示出来!要点:我用Response.Write("data"); 在html 怎么取得 data
#28楼 的补充ashx 页面处理成功后,返回到html页如何触发 html页的jScript 事件,来动态加载&table&展示其内容!谢谢啦!!!
ashx 页面context.Response.Write("&html&&body onload='alert(\"ok\");parent.xxxx父窗口里面的处理函数'&&/body&&/html&")
我不是说过了吗,除了可以alert,还可以输出其它js脚本用于控件父页面的dom元素嘛,要懂得举一反三。你可以在ashx页面经过处理后生成一个字符串,其后父页面的放某个&div id="content"&&/div&,ashx页面输出的js脚本为window.parent.document.getElementById("content").innerHTML=这里是想要展示的html字符串
引用 31 楼 beyond_me21 的回复:
我不是说过了吗,除了可以alert,还可以输出其它js脚本用于控件父页面的dom元素嘛,要懂得举一反三。你可以在ashx页面经过处理后生成一个字符串,其后父页面的放某个&div id="content"&&/div&,ashx页面输出的js脚本为window.parent.document.getElementById("content").innerHTML=这里是想要展示的html字符……
本人愚味,实在不会调用。你们上述的方法我试了,可能我试得不正确!我还是贴出代码吧!大家参考,出错在哪!运行:果然,&div id="divFileName"&&/div& 内的innerHTML没有想象那样出现文字我又再function retfileName(fileName)//内放入断点,(在浏览器操作)
发现function retfileName(fileName) 根本就没有被调用!
using System.Collections.G
using System.L
using System.W
using System.Web.S
using System.Windows.F
using System.IO;
using NPOI.HSSF.UserM
using System.D
using System.Data.OleDb;
using System.T
using 入库管理.DAL.FileSaveTableA
namespace 入库管理.ashx
/// &summary&
/// $codebehindclassname$ 的摘要说明
/// &/summary&
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class 上传数据到供应商数据库 : IHttpHandler
public void ProcessRequest(HttpContext context)
context.Response.ContentType = "text/html";
//// 不存在文件 文件不是EXCEL 不上传
string fileName = context.Request.Files["fileUp"].FileN
if (!(Path.GetExtension(fileName).ToLower() == ".xls"||Path.GetExtension(fileName).ToLower() == ".xlsx"))
context.Response.Redirect("~/importFactory.aspx");
context.Response.End();
T_FileSaveTableAdapter adapter = new T_FileSaveTableAdapter();//数据库操作//
string saveFileName = adapter.SelectCountWhereUpFileName(fileName) + fileN//数据库操作//
context.Request.Files["fileUp"].SaveAs(context.Server.MapPath(@"~/UserFileHere/Excel/" + saveFileName));//保存文件操作//
adapter.Insert(fileName, saveFileName, "xls");
context.Response.Write("&script type='text/javascript'&retfileName('" + saveFileName + "')&/script&");//我调试时,执行到这!此时 saveFileName=="25供应商导入模板.xls"//
public bool IsReusable
return false;
&script type="text/javascript"&
function retfileName(fileName)
$("#divFileName").html(fileName);
&div id="divFileName"&&/div&
&iframe name="uploadfrm" id="uploadfrm" style="display:"&&/iframe&
&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data"
target="uploadfrm"&
&input id="File1" name="fileUp" type="file" /&
&input type="submit" value="上传供应商数据Excel" /&
&input type="text" name="returnData" value="" id="txtreturnData" /&
&form id="form1" runat="server"&
&div id="divFileName"&&/div&
&div id="divData"&&/div&
说明xxxxxxx
引用 34 楼 hetengfei_ 的回复:
本人愚味,实在不会调用。你们上述的方法我试了,可能我试得不正确!我还是贴出代码吧!大家参考,出错在哪!运行:果然,&div id="divFileName"&&/div& 内的innerHTML没有想象那样出现文字我又再function retfileName(fileName)//内放入断点,(在浏览器操作) 发现function retfileName(fileName)……
context.Response.Write("&script type='text/javascript'&retfileName('" + saveFileName + "')&/script&");//我调试时,执行到这!此时 saveFileName=="25供应商导入模板.xls"//
context.Response.Write("&script type='text/javascript'&alert('" + saveFileName + "')&/script&");
//有重大的不同!!!
&script type='text/javascript'&retfileName('" + saveFileName + "')&/script&");这个retfileName函数是父页面的而不是ashx页的方法当然执行不了改成这样context.Response.Write("&script type='text/javascript'&parent.retfileName('" + saveFileName + "');&/script&");
父页面 parent,OK?
OK下面是我的理解,不知对不对。搞了那么一个大弯,原来都是围绕&iframe name="uploadfrm" id="uploadfrm" style="display:"&&/iframe&来转的。一旦设定,&form&属性 target="uploadfrm"就使得页的所有标签列入子窗体?
明白不明白iframe的概念?就是说可以将其它的页面嵌在父页面上,在这里没有指定src,也就是空白页,当把表单的target="uploadfrm"时,一旦表单提交就等于说这个iframe就装载了ashx这个页面了什么叫“就使得页的所有标签列入子窗体?”
这个东西 加断点最直接了
我建议你还是用MessageBox.Show("配置文件出错!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);就用这个看一下,参数在传递中有没有“信息值”
action 对.ashx文件无效,必须实例化才能接收数据!
引用 39 楼 beyond_me21 的回复:
明白不明白iframe的概念?就是说可以将其它的页面嵌在父页面上,在这里没有指定src,也就是空白页,当把表单的target="uploadfrm"时,一旦表单提交就等于说这个iframe就装载了ashx这个页面了什么叫“就使得页的所有标签列入子窗体?”
按你说的理解。设&form&target="uploadfrm"时, 整块&form&被装载了到&iframe&的子标签了。提交时,是&form&发送到 xxx. 但这是&form&已属于&iframe&的页面内容了所以xxx.ashx返回的数据也就返回到&iframe&内了,如果我们把&iframe& 的样式设为"style="display: ;",我们就可以在&iframe&内, 看到我写入的Response.Write("content"); 的content了而我是把&script&的方法声明在外,如果我把它声明在&iframe&内部,那么就不会报错了!
我用fireFox的 fireBug一看,还真是这样啊
&iframe id="uploadfrm" style="display:" name="uploadfrm"&
&%!-----东东就在这啊--------%&
&script type="text/javascript"&
parent.retfileName('28供应商导入模板.xls')
&body&&/body&
js方法声明在&iframe&内部不会报错,是对的,但是这里的js要操作的父页面的dom元素&div id="divFileName"&&/div&,明白吗?parent,父页面而不是iframe里的元素
对啊,太感谢你了。总算打开其中一个心结,让我对asp.net 用了更深的认识。
最后我就总结一下吧,下面是无刷新源码 , 大家参考!!!aspx模板面
&%@ Page Language="C#" AutoEventWireup="true" CodeBehind="backFooter.aspx.cs" Inherits="入库管理.backFooter" %&
&!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&
&html xmlns="http://www.w3.org/1999/xhtml" &
&head runat="server"&
&title&&/title&
&script type="text/javascript"&
function retfileName(fileName)//返回成功时执行
$("#divFileName").html(fileName);
&iframe name="uploadfrm" id="uploadfrm" style="display:"&&/iframe&
&form id="formHead" action="UpLoad.ashx" method="post" enctype="multipart/form-data"target="uploadfrm"&
&input id="File1" name="fileUp" type="file" /&
&input type="submit" value="上传供应商数据Excel" /&
&form id="form1" runat="server"&
一些不能刷新的标签在这
UpLoad.ashx 处理文件
using System.Collections.G
using System.L
using System.W
using System.Web.S
using System.Windows.F
using System.IO;
using NPOI.HSSF.UserM
using System.D
using System.Data.OleDb;
using System.T
using 入库管理.DAL.FileSaveTableA
namespace 入库管理.ashx
/// &summary&
/// $codebehindclassname$ 的摘要说明
/// &/summary&
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class 上传数据到供应商数据库 : IHttpHandler
public void ProcessRequest(HttpContext context)
context.Response.ContentType = "text/html";
// 不存在文件 or文件不是EXCEL文件 不能上传
string fileName = context.Request.Files["fileUp"].FileN
if (!(Path.GetExtension(fileName).ToLower() == ".xls"||Path.GetExtension(fileName).ToLower() == ".xlsx"))
context.Response.Redirect("~/上传错误页.aspx");
context.Response.End();
string path =context.Server.MapPath(@"~/UserFileHere/Excel/" );
if(!File.Exists(path))//路径不在,创建!
File.Create(path);
context.Request.Files["fileUp"].SaveAs(path+ fileName);
context.Response.Write("&script type='text/javascript'&parent.retfileName('" + fileName+ "')&/script&");
public bool IsReusable
return false;
网上插件来的比较容易.还显示进度条!
学了不少东西!
MessageBox.Showmy god还是WEB的初学者吧
引用 15 楼 wknight_it 的回复:
引用 10 楼 pengqian098 的回复:我在ASP.NET 里面看见 MessageBox.Show()了oh,my lady gaga! 老婆给我上点眼药水可以的,只要你引用 Window.Form.dll网站不也是个软件嘛
你试。无语啊。哎CSDN
使用swfupload控件比较好,可批量上传、无刷新、带进度条、带预览缩略图,LZ可以到官网看它的demo:
引用 2 楼 beyond_me21 的回复:
&form id="formHead" action="ashx/UpLoad.ashx" method="post" enctype="multipart/form-data" &
&input id="File1" name="fileUp" type="file"
&input type="submit" value="上传供应商……
要设置服务器的读取方式 默认情况下是读纯文本
iframe模拟无刷新占用一个人头数,你懂得!尽量慎用!
引用 54 楼 jingyexiaoyue 的回复:
iframe模拟无刷新占用一个人头数,你懂得!尽量慎用!
iframe 是客户端控件吧?但是我看发送的报文件也没有太多的无用的信息(且只有次请求哦,很多插件不是,很多很多的请求!)ViewState 很少,效率应该挻高的,会比很多插件高哦。iframe模拟无刷新占用一个人头数,真的不懂!知道高手不知能不能帮我解释一下!
I think that to get the &a href="/topics/personal-loans"&personal loans&/a& from creditors you ought to have a firm motivation. But, one time I have received a commercial loan, because I was willing to buy a building.Web.config文件里 &providerOption name=&CompilerVersion& value=&v3.5&/& 不允许有子节点 - ASP.NET - 网站开发技术
帮助别人就是帮助自己!
如果这里解决了您的问题,请您点一下推荐
Web.config文件里 &providerOption name=&CompilerVersion& value=&v3.5&/& 不允许有子节点
同样的问题已有人问过了,原帖地址:但没有得到满意的答案,在此再发帖问问。问题如下:&compiler language="c#;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c"& &providerOption name="CompilerVersion" value="v3.5"/& &providerOption name="WarnAsError" value="false"/&&/compiler&分析器错误信息: 不允许有子节点。版本信息: Microsoft .NET Framework 版本:2.0.50727.42; ASP.NET 版本:2.0.50727.42除了安装 .NET Framework 3.5 (还是安装.NET Framework 3.5 SP1呢?) 外还有没有其它的办法?
请高人指点一下,在线等,谢谢!
配置文件的节点有framework2.0不支持的部分,所以显示出错.微软的向前兼容性向来很差,所以VS2008做的要放到2005的只要安装framework3.5或以上版本就行了
如果你的VS是2008,你在你的项目上右键看下目标.net framework是不2.0的如果是VS2005,直接删了就是了
这个是3.5的内容,你必须安装.NET 3.5才能解析这个内容,否则就会出现这个问题,要你就在工程里面选择目标为.NET 2.0,不属于2.0的内容会被自动删除。另外,你用的是32位还是64的服务器?
language="c#;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c"&
&providerOption name="CompilerVersion" value="v3.5"/&
&providerOption name="WarnAsError" value="false"/&
&/compiler&
引用 3 楼 cuike519 的回复:
这个是3.5的内容,你必须安装.NET 3.5才能解析这个内容,否则就会出现这个问题,要你就在工程里面选择目标为.NET 2.0,不属于2.0的内容会被自动删除。另外,你用的是32位还是64的服务器?
现在我运行的是别人开发的程序,没有源代码,所以无法在VS2005里转换。服务器是32位还是64位是指处理器的类型吗?处理器类型为64位。我希望能找到不安装 .NET Framework 3.5 的解决办法。
我的操作系统是32位的。
安装framework3.5安装framework3.5安装framework3.5
我希望能找到不安装 .NET Framework 3.5 的解决办法。吧改节点 全部删除!但,代码有用到3.5的特性的话,,,问题也就来了!
引用 8 楼 l 的回复:
我希望能找到不安装 .NET Framework 3.5 的解决办法。吧改节点 全部删除!但,代码有用到3.5的特性的话,,,问题也就来了!
不知道代码中有没有用到3.5的特性,因为没有源代码。但我估计有用到。
每天回帖即可获得10分可用分
安装framework3.5应该不会有什么影响的吧
我也遇到过同样的问题..........
我也反这种错误啊 怎么办 啊怎样获取&input type=&file& id=&file1& name=&file1&&的绝对路径值 - HTML(CSS) - 网站开发技术
帮助别人就是帮助自己!
如果这里解决了您的问题,请您点一下推荐
怎样获取&input type=&file& id=&file1& name=&file1&&的绝对路径值
怎样获取&input type="file" id="file1" name="file1"&的绝对路径值用document.getElementById("file1").value只能获取它的文件名,但是究竟要怎样获取它的绝对路径值呢,劳请大家帮忙,小弟上网找了许久都没有找到解决方法,急!!!
嗯,没有办法~
在IE里打开:&input type="file" id="file1" name="file1"&&input type=button onclick=alert(document.getElementById("file1").value) value=kkkk&
楼主要做图片预览?&input
type="file" id="upLoadImgFile" onchange ="setImg()"
/&&input id="Submit1" type="submit" value="submit" /&&p&&/p&&img src="" id ="imgView" /&&script&function setImg(){
var isIE = document.all?true:
var isIE7 = isIE && (navigator.userAgent.indexOf('MSIE 7.0') != -1);
var isIE8 = isIE && (navigator.userAgent.indexOf('MSIE 8.0') != -1);
var upLoadImgFile =
document.getElementById("upLoadImgFile");
var imgView = document.getElementById("imgView");
if(isIE7 || isIE8)
upLoadImgFile.select();
imgView.src = document.selection.createRange().
document.selection.empty();
}else{ imgView.src =
upLoadImgFile.}
imgView.src =
upLoadImgFile.files.item(0).getAsDataURL();
}&/script&
&input type="file" id="file1" name="file1" value="C:\2222.xls"&在IE中获取到的值是C:\2222.xls,即全路径从但是在FireFox中获取到的值是2222.xls,只能获取文件名有没有办法在FireFox中也能取得全路径呢?
用的啥呢,FF里选文件时,也是全部路径出来的呀,
不是所有的浏览器都允许你得到绝对地址的。你试试其他的浏览器。

我要回帖

 

随机推荐