HTML DOM输入图像formMethod属性语法:用于设置或返回输入图像的表单方法属性的值。 formMethod属性用于指定提交表单时用于发送数据的HTTP方法。 HTTP方法有两种,即GET和POST。此属性覆盖<form>元素的method属性。
用法:
- 它返回Input Image formMethod属性。
imageObject.formMethod
- 它用于设置Input Image formMethod属性。
imageObject.formMethod = get|post
属性值:
- GET:在GET方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中可见。
- POST:在post方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中不可见,因为它在GET方法中可见。
返回值:它返回一个字符串值,该字符串值表示提交表单时用于发送数据的HTTP方法。
范例1:本示例说明了如何返回Input Image formMethod属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image formMethod
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Image formMethod</h2>
<button onclick="my_geek()">
<input id="myImage"
type="image"
formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
width="48"
height="48" formMethod="post"formNoValidate>
</button>
<h2 id="Geek_h" style="color:green;">
</h2>
<script>
function my_geek() {
// Return target, alt and height.
var txt = document.getElementById(
"myImage").formMethod;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明如何设置formMethod属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image formMethod
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Image formMethod Property</h2>
<button onclick="my_geek()">
<input id="myImage"
type="image"
formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
width="48"
height="48" formMethod="post"formNoValidate>
</button>
<h2 id="Geek_h" style="color:green;">
</h2>
<script>
function my_geek() {
// Return target, alt and height.
var txt = document.getElementById(
"myImage").formMethod = "Get";
document.getElementById(
"Geek_h").innerHTML =
"The value of the formMethod Attribute was changed to "
+ txt;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM Input Image formMethod属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
相关用法
- HTML Input Submit formMethod用法及代码示例
- HTML input formmethod用法及代码示例
- HTML Input Image src用法及代码示例
- HTML Input Image name用法及代码示例
- HTML Input Image value用法及代码示例
- HTML Input Image alt用法及代码示例
- HTML Input Image width用法及代码示例
- HTML Input image autofocus用法及代码示例
- HTML Input Image form用法及代码示例
- HTML Input Image formAction用法及代码示例
- HTML Input Image formEnctype用法及代码示例
- HTML Input Image type用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input Image formNoValidate用法及代码示例
- HTML input image height用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Image formMethod Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。