2016-06-16 114 views
0

在手機/平板電腦上滾動時,datepicker日曆消失。在手機/平板電腦上滾動時,datepicker日曆消失

當我點擊字段(在手機或平板電腦上)日期,日曆出現,但當我想滾動(你必須觸摸屏幕滾動)日曆消失。這非常煩人,因爲這是我需要的最後一件事情。

您可以查看下面的日期字段: http://domburghome.com/domburg/index.php/hotel/jan-tooropstraat-2a/

請有人可以幫助我。 thnxx

+0

我不能複製我的設備這種行爲。 –

回答

1

這是舊的,但在搜索解決方案時處於最佳結果,所以我在這裏解決了問題。如果您使用的是Bootstrap datepicker,請檢查mousedown事件處理程序並查看它是否也綁定到touchstart。只需刪除touchstart。

$(document), { 
       'mousedown touchstart': $.proxy(function(e){ 

改變這

$(document), { 
       'mousedown': $.proxy(function(e){ 

提交是在這裏:https://github.com/uxsolutions/bootstrap-datepicker/pull/1284

相關問題