2016-12-02 54 views
0

當我調整了jQuery日曆的大小時,點擊了 事件沒有得到點擊,它在IE上工作正常,但在Firefox和Chrome上不能正常工作 。在自定義crm jquery完整日曆中未點擊的事件

+1

請發佈您的代碼以詳細瞭解您的問題。沒有任何代碼的問題在SO中有時會失效,並且很可能會被封閉和降級。 –

+0

您希望我們如何幫助您?根據你的模糊描述,可能有1000個這樣的原因。如果沒有發佈代碼(的相關部分)並更詳細地描述問題(例如指出哪些元素不可點擊以及瀏覽器之間行爲的確切區別),我們只是在猜測。看到http://stackoverflow.com/help/how-to-ask – ADyson

回答

0
$(document).ready(function() { 
      //h = screen.availHeight; 
      w = screen.availWidth; 
      $cal = $('#calendar'); 
      $cal.width(w); 
      $modal = $('#myModal'); 
      $modal.width(w); 
      //$modal.height(h); 
      $(window).resize(function() { 
       $('#calendar').fullCalendar('option', 'height', get_calendar_height()); 
      }); 
      fetchEventData(); 
      bindCalender(); 
      $('#calendar').fullCalendar({ 
       //options 
       height: get_calendar_height 

      }); 
     }); 
+0

在這裏,我已經得到了答案..它完美的作品 –