最新的Web开发教程
 

需要输入时间属性

输入时间对象参考 输入时间对象

查找出来,如果时间字段必须在提交表单之前填写:

var x = document.getElementById("myTime").required;

x的结果将是:

true
试一试»

定义和用法

所需的属性设置或返回是否时间字段必须在提交表单之前填写。

该属性反映了HTML所需的属性。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所需的属性在所有主流浏览器的支持,除了IE 9和早期版本,以及Safari。

注: <input type="time">元素不在Internet Explorer或Firefox的支持。


句法

返回所需的属性:

timeObject .required

设置所需的属性:

timeObject .required=true|false

属性值

Value Description
true|false Specifies whether a time field should be a required part of form submission.
  • true - The time field is a required part of form submission
  • false - Default. The time field is not a required part of form submission

技术细节

返回值: 布尔,如果时间字段是表单提交的必要组成部分返回true,否则返回false

更多示例

设置时间字段是表单提交的必要组成部分:

document.getElementById("myTime").required = true;
试一试»

相关页面

HTML参考: HTML <input>必需的属性


输入时间对象参考 输入时间对象