zoukankan      html  css  js  c++  java
  • 上传文件 获取路径

     <input name="fdxml" id="upload" type="file" />

    1一开始获取C:fakepathdoc.xml 实际路径:D:xmldoc.xml

    设置浏览器获取到实际路径:interneter选项--安全-自定义级别—启用-将文件上传时包含本地路径

    区分浏览器

      if (obj) {                 var file_up = document.getElementById('upload');                    

    //ie                 if (window.navigator.userAgent.indexOf("MSIE") >= 1) {                                         

    file_up.select();

                            var realpath = document.selection.createRange().text;

                                          }                    

    //firefox                     else if (window.navigator.userAgent.indexOf("Firefox") >= 1) {                     

        if (file_up.files) {                          

       return file_up.files.item(0).getAsDataURL();                        

    }                         return file_up.value;            

             }                             

          }

  • 相关阅读:
    form表单生成的简单理解
    drupal里面的ajax最粗浅的理解-流程
    #array_parents #parents的区别
    hook_schema 小总结
    多语言的sitemap xml
    做百度竞价的步骤 不断总结
    为什么要baidu/Google问题 尽量少在群里问问题
    JavaScript Window对象
    JavaScript 3种内置对象
    图片轮播
  • 原文地址:https://www.cnblogs.com/Ilin631/p/3311788.html
Copyright © 2011-2022 走看看