FileUpload form 属性
FileUpload 对象的 form 属性返回包含 FileUpload 对象的表单引用
语法
fileuploadObject.form
浏览器支持
所有主要浏览器都支持 form 属性
范例
返回包含 <input type="file"> 元素所属的表单的 id
<script> function displayResult(){ var x=document.getElementById("fname").form.id; alert(x); } </script> <form id="form1"> 选择一个文件上传: <input type="file" id="fname" size="50"/> </form> <button type="button" onclick="displayResult()">显示包含fileupload的表单</button>