Home  >  Article  >  Web Front-end  >  Solution to the problem that javascript firefox does not display local preview images_javascript skills

Solution to the problem that javascript firefox does not display local preview images_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:58:451128browse
Copy code The code is as follows:


<script> <br>function fileChange(obj) { <br>var url = obj.value url = "file:///" url.replace("\",'/'); <br> alert(url); <br>document.getElementById("img1").src= url; <br>} <br></script>


The key is: url = "file:///" url.replace("\",'/')
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