飞不起来的小菜鸟 2017-04-25 19:24 采纳率: 0%
浏览 3135
已采纳

Chrome浏览器中file表单获取物理路径

为啥我获取到的路径都是获取的路径
请问各位大神,怎么获取全部路径?

 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Student_List.aspx.cs" Inherits="StudentList.Student_List" %>

<!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 src="jquery-1.11.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function () {
            $("#fileField").change(function () {
                var path = $("#fileField").val;
                $("#test").text(path);
            });
        });
    </script>
    <style type="text/css">
        .contents
        {
            width: 100%; height:600px;
            background-color: #dfdfdf;
            margin: 10px auto;
        }
        .file-box
        {
            position: relative;
            width: 340px;
        }
        .txt
        {
            height: 22px;
            border: 1px solid #cdcdcd;
            width: 180px;
        }
        .btn
        {
            background-color: #FFF;
            border: 1px solid #CDCDCD;
            height: 24px;
            width: 70px;
        }
        .file
        {
            position: absolute;
            top: 0;
            right: 80px;
            height: 24px;
            filter: alpha(opacity:0);
            opacity: 0;
            width: 260px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div class="file-box">
        <input type='text' name='textfield' id='textfield' class='txt' />
        <input type='button' class='btn' value='浏览...' />
        <input type="file" name="fileField" class="file" id="fileField" size="28" onchange="document.getElementById('textfield').value=this.value" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel"/>
        <input type="submit" name="submit" class="btn" value="上传" />
    </div>
    <div class="contents">
        <span id="test"></span>
    </div>
    </form>
</body>
</html>

展开全部

  • 写回答

1条回答 默认 最新

  • 斯洛文尼亚旅游 2017-04-25 20:46
    关注

    无法获取,安全问题不允许获取客户端路径,而且获取这个路径也没有意义。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 前端js怎么实现word的.doc后缀文件在线预览
  • ¥20 macmin m 4连接iPad
  • ¥15 DBIF_REPO_SQL_ERROR
  • ¥15 根据历年月数据,用Stata预测未来六个月汇率
  • ¥15 DevEco studio开发工具 真机联调找不到手机设备
  • ¥15 请教前后端分离的问题
  • ¥100 冷钱包突然失效,急寻解决方案
  • ¥15 下载honeyd时报错 configure: error: you need to instal a more recent version of libdnet
  • ¥15 距离软磁铁一定距离的磁感应强度大小怎么求
  • ¥15 霍尔传感器hmc5883l的xyz轴输出和该点的磁感应强度大小的关系是什么
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部