ios – Mobile Safari(10.3.1)DateTime-Local“输入有效值”错误

前端之家收集整理的这篇文章主要介绍了ios – Mobile Safari(10.3.1)DateTime-Local“输入有效值”错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在较新版本的iOS Mobile Safari上收到错误.在iOS 10.3版之前没有发生此错误.有人能指出我正确的方向吗?

这是原始HTML,附带的是检查视图和移动设备(iPhone 7)的视图.


解决方法

简单解决

IOS要求在输入字段上设置值,其类型为“datetime-local”.

示例:< input type =“datetime-local”value =“2000-07-01T12:00”/>

而已 :)

我个人觉得将默认值设置为用户当前本地时间很好.这必须在没有秒的情况下在ISOTime中格式化,因此这可能是这样的代码

// get the iso time string formatted for usage in an input['type="datetime-local"']
var tzoffset = (new Date()).getTimezoneOffset() * 60000; //offset in milliseconds
var localISOTime = (new Date(Date.now() - tzoffset)).toISOString().slice(0,-1);
var localISOTimeWithoutSeconds = localISOTime.slice(0,16);

// select the "datetime-local" input to set the default value on
var dtlInput = document.querySelector('input[type="datetime-local"]');

// set it and forget it ;)
dtlInput.value = localISOTime.slice(0,16);
原文链接:https://www.f2er.com/iOS/334679.html

猜你在找的iOS相关文章