javascript 获取表单file全路径
程序员文章站
2023-12-12 00:03:10
具体代码如下: 复制代码 代码如下: get file input full path<...
具体代码如下:
<html>
<head>
<title>get file input full path</title>
<script language='javascript'>
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;
}
}
</script>
</head>
<body>
<input type="file" onchange="document.getelementbyid('img').src=getfullpath(this);" />
<img id="img" />
</body>
</html>
复制代码 代码如下:
<html>
<head>
<title>get file input full path</title>
<script language='javascript'>
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;
}
}
</script>
</head>
<body>
<input type="file" onchange="document.getelementbyid('img').src=getfullpath(this);" />
<img id="img" />
</body>
</html>
推荐阅读