显示选择的图片
我做了一个输入框, <input type=file name=pic onpropertychange= "pic2.value=getFileName(this); "> 这里有一段JAVASCRIPT,直接取的是文件的名字,没有文件的路径。
用 <input name= "pic2 " type= "text " /> 来显示文件的名称。
我想在让该图片显示出来,我用 <input name= "picture " type= "image " value= "picture " src= "images/lamp/ 'pic2.value ' " /> ,可以这里现问题了,后面那个文件名无效。
一般除了我这种做法,还有什么方法可以让你在FILE里选择的图片立即在下面的区域显示出来呢?
------解决方案-------------------- <input type=file name=pic onpropertychange= "pic2.src=this.value; ">
<img id=pic2>