FileUpload value 属性
Fileupload 对象定义和用法
value 属性返回<input type="file"> 元素选择的文件路径和名称。
在IE, Google Chrome, Opera, Firefox,Safari浏览器的value 属性返回选择文件的假路径名称 。
注意: 由于安全原因,这个属性是只读的。
语法
fileuploadObject.value
浏览器支持
所有主要浏览器都支持 value 属性
实例
实例
显示选择的文件名称:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("fname").value;
alert(x);
}
</script>
</head>
<body>
<form>
Select a file to upload:
<input type="file" id="fname" size="50">
</form>
<button type="button" onclick="displayResult()">Display file path</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("fname").value;
alert(x);
}
</script>
</head>
<body>
<form>
Select a file to upload:
<input type="file" id="fname" size="50">
</form>
<button type="button" onclick="displayResult()">Display file path</button>
</body>
</html>
尝试一下 »
Fileupload 对象
更多建议: