oninput事件 在线等!高手请进
function ViewImg()
{
document.getElementById('preImg').src=document.getElementById('FileUpload1').value;
}
window.onload=function()
{
if(navigator.userAgent.indexOf("MSIE")>0)
{
document.getElementById('FileUpload1').attachEvent("onpropertychange",ViewImg);
}
if(navigator.userAgent.indexOf("Firefox")>=0)
{
document.getElementById('FileUpload1').addEventListener("oninput",ViewImg, false);
}
}
我想实现图片预览功能 在FF中oninput不能用 如果用change图片控件不见了 各位高手有没有好的解决方法 谢谢!
<img alt="" src="../NewsImg/wu.jpg" style="width:200px; height:200px" id="preImg"/>