我正在使用HTML5元素输入属性,并且只有Google Chrome支持日期,时间属性。我尝试过Modernizr,但不了解如何将其集成到我的网站上(如何编码/语法/包含什么)。有关如何使用所有浏览器的日期和时间属性的任何代码段。
我正在使用HTML5元素输入属性,并且只有Google Chrome支持日期,时间属性。我尝试过Modernizr,但不了解如何将其集成到我的网站上(如何编码/语法/包含什么)。有关如何使用所有浏览器的日期和时间属性的任何代码段。
Answers:
任何不支持输入类型的浏览器都date
将默认使用标准类型,即text
,因此您要做的就是检查type属性 (不是attribute),如果date
不支持,则浏览器不支持输入日期,然后添加自己的日期选择器:
if ( $('[type="date"]').prop('type') != 'date' ) {
$('[type="date"]').datepicker();
}
当然,您可以使用所需的任何日期选择器,jQuery UI的日期选择器可能是最常用的日期选择器,但是如果您不将UI库用于其他任何事情,它的确会添加很多JavaScript,但是有数百种替代日期选择器从中选择。
该type
属性永不更改,浏览器将仅text
使用该属性的默认类型,因此必须检查该属性。
如上例所示,该属性仍可以用作选择器。
$('input').prop('type') != 'date'
实际上,Modernizr不会对如何处理新的HTML5输入类型进行任何更改。这是一个特征检测,而不是一个垫片(除<header>
,<article>
等等,其作为衬层块元素类似于待处理<div>
)。
要使用<input type='date'>
,您需要签Modernizr.inputtypes.date
入自己的脚本,如果该脚本为假,请打开另一个提供日期选择器的插件。您有数千种可供选择;Modernizr维护的Polyfill列表并不详尽,可能会给您一些起点。另外,您也可以放任不管-text
当所有浏览器出现无法识别的输入类型时,它们都会退回到原来的状态,因此,最糟糕的情况是您的用户必须输入日期。(您可能想给它们一个占位符或使用类似jQuery.maskedinput的方法使它们保持在正轨。)
您要求提供Modernizr示例,所以就到这里。此代码使用Modernizr来检测是否支持“日期”输入类型。如果不支持,则它将故障回复到JQueryUI datepicker。
注意:您将需要下载JQueryUI,并可能用自己的代码更改CSS和JS文件的路径。
<!DOCTYPE html>
<html>
<head>
<title>Modernizer Detect 'date' input type</title>
<link rel="stylesheet" type="text/css" href="jquery-ui-1.10.3/themes/base/jquery.ui.all.css"/>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-1.7-development-only.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.10.3/ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="jquery-ui-1.10.3/ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="jquery-ui-1.10.3/ui/jquery.ui.datepicker.js"></script>
<script type="text/javascript">
$(function(){
if(!Modernizr.inputtypes.date) {
console.log("The 'date' input type is not supported, so using JQueryUI datepicker instead.");
$("#theDate").datepicker();
}
});
</script>
</head>
<body>
<form>
<input id="theDate" type="date"/>
</form>
</body>
</html>
希望这对您有用。
<script>
var datefield = document.createElement("input")
datefield.setAttribute("type", "date")
if (datefield.type != "date") { // if browser doesn't support input type="date", load files for jQuery UI Date Picker
document.write('<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />\n')
document.write('<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"><\/script>\n')
document.write('<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"><\/script>\n')
}
</script>
<script>
if (datefield.type != "date") { // if browser doesn't support input type="date", initialize date picker widget:
jQuery(function($) { // on document.ready
$('#birthday').datepicker();
}); <- missing semicolon
}
</script>
<body>
<form>
<b>Date of birth:</b>
<input type="date" id="birthday" name="birthday" size="20">
<input type="button" value="Submit" name="B1">
</form>
</body>
只需<script src="modernizr.js"></script>
在该<head>
部分中使用,脚本将添加有助于您区分这两种情况的类:当前浏览器是否支持,或者不支持。
另外,请遵循此主题中发布的链接。它将帮助您:在Firefox和Internet Explorer中HTML5输入类型的日期,颜色,范围支持
我发现的最佳便捷解决方案是,在以下浏览器上工作
苹果浏览器
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<h2>Poly Filler Script for Date/Time</h2>
<form method="post" action="">
<input type="date" />
<br/><br/>
<input type="time" />
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://cdn.jsdelivr.net/webshim/1.12.4/extras/modernizr-custom.js"></script>
<script src="http://cdn.jsdelivr.net/webshim/1.12.4/polyfiller.js"></script>
<script>
webshims.setOptions('waitReady', false);
webshims.setOptions('forms-ext', {type: 'date'});
webshims.setOptions('forms-ext', {type: 'time'});
webshims.polyfill('forms forms-ext');
</script>
</body>
</html>
仅包括Better-Dom和Better-Dateinput-Polyfill在脚本部分中。
这是一个演示:http :
//chemerisuk.github.io/better-dateinput-polyfill/
我在使用英国dd / mm / yyyy格式时遇到了问题,最初使用了adeneo的答案https://stackoverflow.com/a/18021130/243905,但对我来说在Safari浏览器中不起作用,所以改为据我所知,整个工作-使用jquery-ui datepicker,jquery验证。
if ($('[type="date"]').prop('type') !== 'date') {
//for reloading/displaying the ISO format back into input again
var val = $('[type="date"]').each(function () {
var val = $(this).val();
if (val !== undefined && val.indexOf('-') > 0) {
var arr = val.split('-');
$(this).val(arr[2] + '/' + arr[1] + '/' + arr[0]);
}
});
//add in the datepicker
$('[type="date"]').datepicker(datapickeroptions);
//stops the invalid date when validated in safari
jQuery.validator.methods["date"] = function (value, element) {
var shortDateFormat = "dd/mm/yy";
var res = true;
try {
$.datepicker.parseDate(shortDateFormat, value);
} catch (error) {
res = false;
}
return res;
}
}
<html>
<head>
<title>Date picker works for all browsers(IE, Firefox, Chrome)</title>
<script>
var datefield = document.createElement("input")
datefield.setAttribute("type", "date")
if (datefield.type != "date") { // if browser doesn't support input type="date", load files for jQuery UI Date Picker
document.write('<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />\n')
document.write('<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"><\/script>\n')
document.write('<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"><\/script>\n')
}
</script>
<script>
if (datefield.type != "date") { // if browser doesn't support input type="date", initialize date picker widget:
jQuery(function($) { // on document.ready
$('#start_date').datepicker({
dateFormat: 'yy-mm-dd'
});
$('#end_date').datepicker({
dateFormat: 'yy-mm-dd'
});
})
}
</script>
</head>
<body>
<input name="start_date" id="start_date" type="date" required>
<input name="end_date" id="end_date" required>
</body>
</html>