SoFunction
Updated on 2025-04-03

javascript firefox (firefox) does not display local images problem solved

javascript firefox (firefox) does not display local images problem solved

Updated: July 5, 2008 22:39:20 Author:
Firefox has never been able to use js to preview the image. The following is a solution. Use the alternative method to implement the path format supported by firefox.

<img  src=""/> <script> function fileChange(obj) { var url =  url = "file:///" + ("\\",'/'); alert(url); ("img1").src= url; } </script> <input type="file" onchange="fileChange(this);" />

The key is: url = "file:///" + ("\\",'/');

  • firefox
  • Do not display local pictures

Related Articles

  • js picture equal scale code

    js picture scaling code, friends who need it can refer to it.
    2010-05-05
  • Javascript image previous picture next link effect code

    On Renren Photo Album and Kugou Music website, when the mouse moves to the picture, the shape of the mouse will change according to its position on the picture.
    2010-03-03
  • js picture carousel (5 pictures)

    The most common picture carousel effect code implemented with jquery on the Internet.
    2008-12-12
  • Implementation code for JS file size judgment

    Sometimes, our image upload and other functions require verification of the image size of the client. You can only upload pictures less than 100K. Here, the client will first verify it briefly.
    2010-04-04
  • JavaScript Miaowei Classroom Object Smooth Movement Special Effects

    A teaching example in JavaScript Miaowei Classroom, the special effect of object translation motion, activate the function after clicking the button, and control the image to move at a constant speed within a certain period of time, is the simplest and most basic way of movement, and its characteristic is that the direction and speed of the movement do not change.
    2010-09-09
  • JavaScript detection (control) upload file size

    The user client detects the size of the picture. In actual applications, server-side testing is still essential.
    2009-12-12
  • A very simple piece of js code that automatically switches pictures

    A very simple piece of js code that automatically switches pictures...
    2006-11-11
  • javascript firefox (firefox) does not display local images problem solved

    Firefox has never been able to use js to preview the image. The following is a solution. Use the alternative method to implement the path format supported by firefox.
    2008-07-07
  • JavaScript mouse suspended picture displays the original picture. After removing the mouse, the original picture disappears (multiple pictures)

    In fact, all I want to achieve is a large image preview, which does not need to be too complicated. Later, I found this in the original javascript information:) "300 examples of JavaScript web design.chm", I found a similar drop-down menu example from it and modified it to achieve this function.
    2009-12-12
  • js practical uninterrupted scrolling graph effect (good compatibility)

    There are many image scrolling effect codes on the Internet, but most of them have poor compatibility or are chaotic in structure. Xhtml, css, and js have not been well optimized.
    2010-06-06

Latest Comments