HTML DOM输入图像名称属性用于设置或返回输入图像的名称属性的值。提交表单后,名称Attribute用于引用form-data或在JavaScript中引用元素。
用法:
- 要返回名称属性:
imageObject.name
- 设置名称属性:
imageObject.name
属性值:接受单个参数名称,并指定输入图像的名称。
返回值:它返回一个代表输入图像名称的字符串值。
范例1:该程序说明了如何返回名称Property。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image name Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image name Property
</h4>
<button onclick="my_geek()">
<input id="myImage" name="myGeeks" type="image" src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit" formaction="#" a formtarget="#"
formenctype="text/plain" width="48" height="48">
</button>
<h2 id="Geek_h" style="color:green;"></h2>
<script>
function my_geek() {
// Return formTarget, formEnctype and formAction.
var txt = document.getElementById(
"myImage").name;
document.getElementById("Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
示例2:此示例说明了如何设置名称Property。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image name Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image name Property
</h4>
<button onclick="my_geek()">
<input id="myImage" name="myGeeks" type="image" src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit" formaction="#" a formtarget="#"
formenctype="text/plain" width="48" height="48">
</button>
<h2 id="Geek_h" style="color:green;"></h2>
<script>
function my_geek() {
// Return formTarget, formEnctype and formAction.
var txt = document.getElementById(
"myImage").name =
"The value of the name attribute was changed to "
+ "Hello Geeks";
document.getElementById("Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
支持的浏览器:HTML | Java支持的浏览器。 DOM输入图像名称属性在下面列出:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Input Image src用法及代码示例
- HTML Input Image value用法及代码示例
- HTML Input Image alt用法及代码示例
- HTML Input Image formMethod用法及代码示例
- HTML Input Image formTarget用法及代码示例
- HTML Input Image formAction用法及代码示例
- HTML Input Image formNoValidate用法及代码示例
- HTML Input Image formEnctype用法及代码示例
- HTML input image height用法及代码示例
- HTML Input Image form用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input image autofocus用法及代码示例
- HTML Input Image type用法及代码示例
- HTML Input Image width用法及代码示例
- HTML DOM Input Image用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Image name Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。