您现在的位置是:主页 > news > 谈谈网站开发流程/网站建设公司网站
谈谈网站开发流程/网站建设公司网站
admin2025/6/14 19:33:12【news】
简介谈谈网站开发流程,网站建设公司网站,辽宁企业网站建设公司,wordpress英文文章格式输入日期名称属性用于设置或返回日期字段的名称属性的值。可以通过名称属性来标识已提交到服务器的表单数据。 name属性还用于使用Javascript在客户端引用表单数据。用法:要返回name属性:inputdateObject.name设置名称属性:inputdateObject.name属性值na…
输入日期名称属性用于设置或返回日期字段的名称属性的值。
可以通过名称属性来标识已提交到服务器的表单数据。 name属性还用于使用Javascript在客户端引用表单数据。
用法:
要返回name属性:inputdateObject.name
设置名称属性:inputdateObject.name
属性值
name:它用于指定日期字段的名称。
以下示例程序旨在说明日期名称属性:
获取日期字段的名称。
Input Date name Property in HTMLh1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
GeeksforGeeks
Input Date name Property
Date of Birth:
To display the value of the name attribute of the date field,
double-click the "Return Name" button.
Return Name
function My_Date() {
var n = document.getElementById("Test_Date").name;
document.getElementById("test").innerHTML = n;
}
输出:
单击按钮后
支持的网页浏览器
苹果Safari
IE浏览器
Firefox
谷歌浏览器
Opera