上传图片并实时显示
程序员文章站
2022-07-15 11:43:44
...
本文来源于网络! 啥也不说了 copy 改,就OK了
function getFullPath(obj){
if(obj)
{
//ie
if (window.navigator.userAgent.indexOf("MSIE")>=1)
{
obj.select();
return document.selection.createRange().text;
}
//firefox
else if(window.navigator.userAgent.indexOf("Firefox")>=1)
{
if(obj.files)
{
return obj.files.item(0).getAsDataURL();
}
return obj.value;
}
return obj.value;
}
}
<input type="file" onchange="document.getElementById('img').src=getFullPath(this);" />
<img id="img">
上一篇: MySQL数据库备份和还原的常用命令
下一篇: MySQL数据库备份和还原的常用命令