当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Input FileUpload name用法及代码示例


name属性用于设置或返回文件上传按钮的name属性的值。名称属性用于在提交到服务器后标识表单数据。

用法:

  • 返回名称属性:
    fileuploadObject.name
  • 设置名称属性:
    fileuploadObject.name=name

属性值:


  • name:指定文件上传按钮的名称。

示例1:返回“name”属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
  <center> 
    <h1> 
      Geeks for Geeks 
  </h1> 
  
    <input type="file"
           id="myFile" 
           name="gfgFile"> 
  
    <p id="demo"></p> 
  
    <button onclick="myFunction()"> 
        Click 
    </button> 
  
    <script> 
        function myFunction() { 
            var x = 
                document.getElementById("myFile").name; 
            document.getElementById("demo").innerHTML = x; 
        } 
    </script> 
  </center> 
</body> 
  
</html>

输出:
之前:

后:

示例2:设置“name”属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
    <h1> 
      Geeks for Geeks 
  </h1> 
        <input type="file"
               id="myFile"> 
  
        <p id="demo"></p> 
  
        <button onclick="myFunction()"> 
            Try it 
        </button> 
  
        <script> 
            function myFunction() { 
                var x = 
                    document.getElementById( 
                        "myFile").name = "new name"; 
  
                document.getElementById("demo").innerHTML = x; 
            } 
        </script> 
    </center> 
  
</body> 
  
</html>

输出:
之前:

后:

支持的浏览器:

  • 谷歌浏览器
  • 火狐浏览器
  • 边10.0
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自Vijay Sirra大神的英文原创作品 HTML | DOM Input FileUpload name Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。