在 Firefox 中添加 JQuery datepicker 后如何隐藏 HTML 日历?

Posted

技术标签:

【中文标题】在 Firefox 中添加 JQuery datepicker 后如何隐藏 HTML 日历?【英文标题】:How to hide HTML calendar after adding JQuery datepicker in Firefox? 【发布时间】:2020-08-02 19:26:43 【问题描述】:

我的问题是第二个日历,它与 first.Only 在 Firefox 上同时显示。 我在代码中添加了 JQuery datepicker 以使日历在 ios 上工作,现在在 IOS 上还可以,但在 Firefox 上,我从 Jquery 和基本 html 日历中获得了 input type="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>

【问题讨论】:

【参考方案1】:

问题是因为您在 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 中添加 JQuery datepicker 后如何隐藏 HTML 日历?的主要内容,如果未能解决你的问题,请参考以下文章

在 jQuery 中克隆或向表单添加输入不会提交到 Firefox 中的 PHP

如何在xsl中添加jquery函数(Date)

使用 Jquery 在 Firefox 中为背景位置 y 设置动画

为啥 Jquery 加载在 Firefox 中不起作用?

jQuery clone() FireFox 错误 - 无法提交克隆的表单

如何让 HTML 5 输入 type="date" 在 Firefox 和/或 IE 10 中工作