jQuery 日期和时间选择器

发布于 2024-09-13 16:17:27 字数 1024 浏览 15 评论 0原文

我正在尝试使用位于

http://razum.si/jQuery- 的日期和时间选择器calendar/TimeCalendar.html

但是,此选择器仅在不包含 jquery-ui.js 时才起作用。看起来它与基本 jquery-ui.js 的某些内容冲突。

需要 jquery 核心 api。

任何见解都会有所帮助。

提前致谢。

代码是

     <script type="text/javascript" src="jquery.js"></script> 
    <script type="text/javascript" src="jquery-calendar.js"></script> 
    <link rel="stylesheet" type="text/css" href="jquery-calendar.css" /> 
    <link rel="stylesheet" type="text/css"  href="styles.css" /> 
    <script type="text/javascript"> 
    //<![CDATA[
        $(document).ready(function (){ 
            $("#calendar1").calendar();

        });
    //]]>
    </script> 

,使弹出窗口集中在输入字段上的代码是

 <input type="text" id="calendar1" class="calendarFocus"/>

该脚本可以通过查看页面源代码来查看,上面给出了该链接。 (我无法在这里发布更多链接,因为堆栈溢出不允许这样做)。

I am trying to use the date and time picker located at

http://razum.si/jQuery-calendar/TimeCalendar.html

However this picker works only if the jquery-ui.js is not included. It looks like it conflicts with something with the base jquery-ui.js.

The jquery core api is required.

Any insight would be helpful.

thanks in advance.

The code is

     <script type="text/javascript" src="jquery.js"></script> 
    <script type="text/javascript" src="jquery-calendar.js"></script> 
    <link rel="stylesheet" type="text/css" href="jquery-calendar.css" /> 
    <link rel="stylesheet" type="text/css"  href="styles.css" /> 
    <script type="text/javascript"> 
    //<![CDATA[
        $(document).ready(function (){ 
            $("#calendar1").calendar();

        });
    //]]>
    </script> 

and the code to bring the popup on focusing on input field is

 <input type="text" id="calendar1" class="calendarFocus"/>

The script can be seen by looking into the source of the page, for which link is given above. (I am not able to post more links here, as stack overflow is not allowing it).

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

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

发布评论

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

评论(4

紫南 2024-09-20 16:17:27

我对这个插件不熟悉。但是我通过将脚本调用放置在 Pengoworks one 来覆盖 jQuery UI 的自动完成功能用户界面调用:

<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/jquery-ui-1.7.3.custom.min.js"></script>
<script type="text/javascript" src="/js/jquery.autocomplete.js"></script>

I'm not familiar with this plugin. But I override jQuery UI's autocomplete with the Pengoworks one by placing the script call after the UI call:

<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/jquery-ui-1.7.3.custom.min.js"></script>
<script type="text/javascript" src="/js/jquery.autocomplete.js"></script>
浮光之海 2024-09-20 16:17:27

很难说没有看到你的代码,

但是如果你继续遇到这个日期选择器的问题..我一直使用 这个
一,真的很简单,而且看起来也很棒。

Hard to say without seeing your code,

However if u continue to have problems with this date picker.. I have always used THIS
one, really easy and looks great too.

欢烬 2024-09-20 16:17:27

您可以尝试下载仅包含您需要的模块的 jquery UI。 (所以没有日期选择器)。

You can try to download the jquery UI with only the modules that you need. (So without the datepicker).

终遇你 2024-09-20 16:17:27

我不确定你的意思。您在页面中使用 jQuery,并且想要使用 razum timecalender,但这与 jquery 冲突?

也许使用 jQuery UI 版本?可能更容易实现,因为您已经有了 jQuery。 参见此处

I'm not sure what you mean. You use jQuery in you page and you want to use the razum timecalender, but that one clashes with jquery?

Maybe use the jQuery UI version? Probably easier to implement because you already have jQuery. see here

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