如何在 Firefox 中添加 JQuery 日期选择器后隐藏 HTML 日历?
How to hide HTML calendar after adding JQuery datepicker in Firefox?
我的问题是在 Firefox 上 first.Only 同时显示第二个日历。
我在代码中添加了 JQuery 日期选择器,使日历在 IOS 上工作,现在在 IOS 上可以,但在 Firefox 上,我从 Jquery 和基本 HTML 日历中获得了日历来自输入类型="date".
我想删除 Firefox 中的 HTML 日历,就像在其他浏览器中一样,只保留 JQuery 日历。
感谢您的帮助。
Image 1
Image 2
这是我的代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="http://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
<link type="text/css" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" />
</head>
<body>
<input type="date" class="calendar-delivery">
<script type="text/javascript">
$(window).on('load', function () {
if ( $('.calendar-delivery')[0].type = 'date' )
{
$('.calendar-delivery').datepicker(
{
dateFormat: "dd-mm-yy",
minDate: -5,
maxDate: +5,
beforeShowDay: function(date) {
var day = date.getDay();
return [(day != 0), ''];
}
}
);
}
});
</script>
</body>
</html>
问题是因为您在 date
输入上定义了选择器。它需要在普通 text
输入上使用。
另请注意,应删除检查 JS 中字段类型的条件。部分是因为上面的原因,也因为逻辑被打破了。 =
用于设置一个值,而 ==
或 ===
应该用于检查相等性。
$(window).on('load', function() {
$('.calendar-delivery').datepicker({
dateFormat: "dd-mm-yy",
minDate: -5,
maxDate: +5,
beforeShowDay: function(date) {
var day = date.getDay();
return [(day != 0), ''];
}
});
});
<script src="https://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
<link type="text/css" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" />
<input type="text" class="calendar-delivery">
我的问题是在 Firefox 上 first.Only 同时显示第二个日历。 我在代码中添加了 JQuery 日期选择器,使日历在 IOS 上工作,现在在 IOS 上可以,但在 Firefox 上,我从 Jquery 和基本 HTML 日历中获得了日历来自输入类型="date".
我想删除 Firefox 中的 HTML 日历,就像在其他浏览器中一样,只保留 JQuery 日历。
感谢您的帮助。
Image 1 Image 2
这是我的代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="http://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
<link type="text/css" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" />
</head>
<body>
<input type="date" class="calendar-delivery">
<script type="text/javascript">
$(window).on('load', function () {
if ( $('.calendar-delivery')[0].type = 'date' )
{
$('.calendar-delivery').datepicker(
{
dateFormat: "dd-mm-yy",
minDate: -5,
maxDate: +5,
beforeShowDay: function(date) {
var day = date.getDay();
return [(day != 0), ''];
}
}
);
}
});
</script>
</body>
</html>
问题是因为您在 date
输入上定义了选择器。它需要在普通 text
输入上使用。
另请注意,应删除检查 JS 中字段类型的条件。部分是因为上面的原因,也因为逻辑被打破了。 =
用于设置一个值,而 ==
或 ===
应该用于检查相等性。
$(window).on('load', function() {
$('.calendar-delivery').datepicker({
dateFormat: "dd-mm-yy",
minDate: -5,
maxDate: +5,
beforeShowDay: function(date) {
var day = date.getDay();
return [(day != 0), ''];
}
});
});
<script src="https://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
<link type="text/css" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" />
<input type="text" class="calendar-delivery">