HTML DOM输入图像formMethod属性语法:用于设置或返回输入图像的表单方法属性的值。 formMethod属性用于指定提交表单时用于发送数据的HTTP方法。 HTTP方法有两种,即GET和POST。此属性覆盖
元素的method属性。用法:
它返回Input Image formMethod属性。imageObject.formMethod
它用于设置Input Image formMethod属性。imageObject.formMethod = get|post
属性值:
GET:在GET方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中可见。
POST:在post方法中,提交表单后,表单值将在新浏览器选项卡的地址栏中不可见,因为它在GET方法中可见。
返回值:它返回一个字符串值,该字符串值表示提交表单时用于发送数据的HTTP方法。
范例1:本示例说明了如何返回Input Image formMethod属性。
HTML DOM Input Image formMethod
GeeksForGeeks
DOM Input Image formMethod
type="image"
formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
width="48"
height="48" formMethod="post"formNoValidate>
function my_geek() {
// Return target, alt and height.
var txt = document.getElementById(
"myImage").formMethod;
document.getElementById(
"Geek_h").innerHTML = txt;
}
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明如何设置formMethod属性。
HTML DOM Input Image formMethod
GeeksForGeeks
DOM Input Image formMethod Property
type="image"
formtarget="#"
src="https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
width="48"
height="48" formMethod="post"formNoValidate>
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;
}
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM Input Image formMethod属性支持的浏览器:
谷歌浏览器
IE浏览器
Firefox
苹果Safari
Opera