根据浏览器选择 `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 );
广告