如何解决 jQuery UI 和 TableGear 冲突?

发布于 2024-09-24 19:06:55 字数 355 浏览 3 评论 0原文

我在我的网站中使用 Tablegear 和 jQuery UI 的日期选择器,不知怎的,只有我首先声明的一个是在职的。我不确定,但这可能是一个冲突问题,不是吗?

代码如下: http://jsfiddle.net/nc3Rs/

请注意,我添加了 TableGears1. 6-jQuery.js 作为资源。一旦我删除此资源,日期选择器就开始工作。

我该如何解决这个冲突?

I'm using Tablegear and jQuery UI's date picker in my site and somehow only the one I declare first is working. I'm not sure but it can be a conflict issue, can't be?

Here's the code: http://jsfiddle.net/nc3Rs/

Notice that I added the TableGears1.6-jQuery.js as a resource. As soon as I remove this resource the date picker begins to work.

How can I solve this conflict?

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

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

发布评论

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

评论(1

絕版丫頭 2024-10-01 19:06:55

我查看了此内容,发现如果从 TableGears1.6-jQuery.js 文件末尾删除下面显示的脚本位,则日期选择器脚本将再次开始工作:

// Fix for jQuery 1.4.2 strangely not firing browser native focus event.
jQuery.fn.focus = function(){
  this.each(function(){
    if(this.focus) this.focus();
  });
};

I looked at this and found that if you remove the bit of script shown below from the end of the TableGears1.6-jQuery.js file, the datepicker script will start working again:

// Fix for jQuery 1.4.2 strangely not firing browser native focus event.
jQuery.fn.focus = function(){
  this.each(function(){
    if(this.focus) this.focus();
  });
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文