Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLInputElement.mozSetFileNameArray

概述

设置一个HTML input元素中选中的若干文件的路径以及文件名.

注: 该方法是Gecko私有的方法,在其他浏览器中不可用,且是个特权方法,不能在普通网页中使用.

语法

inputElement.mozSetFileNameArray(aFileNames, aLength);

参数

  • aFileNames 指定给该元素的若干个文件的文件名路径以及文件名.
  • aLength 需要指定文件的个数(通常是数组aFileNames的长度).

示例

var fileArray = {"/foo/bar.txt", "/foo/foosball.txt"};

inputElement.mozSetFileNameArray(fileArray, fileArray.length);

规范

非标准,Mozilla私有方法.

相关链接

文档标签和贡献者

 此页面的贡献者: teoli, basemnassar11, ziyunfei
 最后编辑者: teoli,