JQuery、Datepicker...OnSelect 在 IE 中不起作用

发布于 2024-10-05 11:35:48 字数 345 浏览 5 评论 0原文

好吧……真烦我。曾经在所有平台上运行过,但由于某种原因,现在不行了。想想看,IE 导致以下代码出现问题:

$(document).ready(function() {
    $("#ecalendar").datepicker({ 
      onSelect: function(dateText, inst) { 
        alert("Finally!"); 
      }, 
      beforeShowDay: setScheduledDays
    }); 
});

在除 IE 之外的所有浏览器中都能正常工作。我知道这个问题已经被问了十亿次,但其他答案都没有得到任何结果。

Ok...really bugging me. Was working on all platforms, but for some reason, is not now. Go figure, IE is causing problems with the following code:

$(document).ready(function() {
    $("#ecalendar").datepicker({ 
      onSelect: function(dateText, inst) { 
        alert("Finally!"); 
      }, 
      beforeShowDay: setScheduledDays
    }); 
});

Works great in every browser except IE. I know this has been asked a billion times, but none of the other answers garnered any results.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城半夏 2024-10-12 11:35:48

尝试像这样定位您的选择列表:

$("#ecalendar select").datepicker({ 

Try targeting your select list like so:

$("#ecalendar select").datepicker({ 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文