Home  >  Article  >  php教程  >  Solution to the problem that getAsDataURL cannot preview local images under Firefox 7.0

Solution to the problem that getAsDataURL cannot preview local images under Firefox 7.0

高洛峰
高洛峰Original
2016-12-27 09:35:191181browse

Using uchome to upload as an example, take the original code: return obj.files.item(0).getAsDataURL();

After upgrading to Firefox7.0, you need to change it to: return window.URL. createObjectURL(obj.files[0]);

In fact, Firefox7.0 abandoned the item attribute.


For more related articles on how getAsDataURL cannot preview local images under Firefox 7.0, please pay attention to the PHP Chinese website!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn