Home > Web Front-end > JS Tutorial > body text

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

WBOY
Release: 2016-05-16 17:15:00
Original
1300 people have browsed it

Using the example uploaded by uchome, take the original code: return obj.files.item(0).getAsDataURL();

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

In fact, Firefox7.0 has abandoned the item attribute.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!