HTML DOM输入图像formTarget属性用于设置或返回具有图像字段的输入元素的formTarget的值。 Target属性用于指定提交的结果将在当前窗口,新选项卡还是新框架中打开。句法:
- 返回formTarget属性。
imageObject.formTarget
- 设置formTarget属性。
imageObject.formTarget
属性值:它接受下面提到和描述的五个参数:
- _blank:它定义了提交的结果将在新窗口或新选项卡中打开。
- _self:它指定提交的结果将在同一窗口中打开。
- _parent:它指定结果将在父框架集中打开。
- _top:它指定结果将在整个窗口中打开。
- framename:它在命名框架中打开响应。
返回值:它返回一个字符串值,该字符串值表示提交的结果将在当前窗口,新选项卡还是新框架中打开。
范例1:本示例说明了如何返回Input Image formTarget属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image formTarget Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
DOM Input Image formTarget Property
</h2>
<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="_blank"
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").formTarget;
document.getElementById("Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
范例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image formTarget Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image formTarget 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="_blank"
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").formTarget = "_self";
document.getElementById("Geek_h").innerHTML =
"The formTarget as changed to " + txt;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
支持的浏览器:下面列出了HTML DOM输入图像formTarget属性支持的浏览器:
- 谷歌浏览器9.0
- Internet Explorer 10.0
- Firefox 4.0
- Opera 10.6
- Safari 5.1
相关用法
- HTML Input Submit formTarget用法及代码示例
- HTML <input> formtarget属性用法及代码示例
- HTML Input Image alt用法及代码示例
- HTML Input Image name用法及代码示例
- HTML Input Image src用法及代码示例
- HTML Input Image value用法及代码示例
- HTML input image height用法及代码示例
- HTML Input Image formEnctype用法及代码示例
- HTML Input Image form用法及代码示例
- HTML Input Image formNoValidate用法及代码示例
- HTML Input Image width用法及代码示例
- HTML Input image autofocus用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input Image formAction用法及代码示例
- HTML Input Image formMethod用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Image formTarget Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。