根据浏览器选择 `window.URL.createObjectURL()` 和 `window.webkitURL.createObjectURL()` 的方法


要选择,你需要定义包装函数 −

function display ( file ) {
   if ( window.webkitURL ) {
      return window.webkitURL.createObjectURL( file );
   } else if ( window.URL && window.URL.createObjectURL ) {
      return window.URL.display( file );
   } else {
   return null;
   }
}

然后针对跨浏览器进行设置 −

var url = display( file );

更新时间: 2020-06-25

573 浏览量

开启您的 职业生涯

通过完成课程获得认证

马上开始
广告