同时使用 jquery.js 和 scriptaculous.js 文件?

发布于 2024-07-30 06:33:28 字数 305 浏览 6 评论 0原文

有没有办法同时使用 jquery 和 scriptaculous js 文件?

我试图实现cakephp框架的自动完成功能,它需要js文件,prototype.js,scriptaculous.js,effects.js和controls.js。

我还在我的应用程序中使用 JQuery 函数,这需要 jquery.js 文件。

如果我包含 jquery.js 文件,自动完成功能将不起作用。 但我还需要 jquery.js 文件来实现我的 jquery 功能。

那么有没有什么方法可以同时使用这两个js文件呢?

Is there any way to use both the jquery and scriptaculous js files together?

I was trying to implement the autocomplete feature of the cakephp framework which required the js files,prototype.js,scriptaculous.js,effects.js and controls.js.

I also use JQuery functions in my application which requires the jquery.js file.

The auto complete feature does not work if I include the jquery.js file. But I also require the jquery.js files to implement my jquery functions.

So is there any method to use both the js files?

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

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

发布评论

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

评论(2

毁我热情 2024-08-06 06:33:28

您需要在 jQuery 中启用无冲突模式,请参阅:

http://docs.jquery.com/Using_jQuery_with_Other_Libraries

从上面的链接:

<html>
 <head>
   <script src="prototype.js"></script>
   <script src="jquery.js"></script>
   <script>
     jQuery.noConflict();

     // Use jQuery via jQuery(...)
     jQuery(document).ready(function(){
       jQuery("div").hide();
     });

     // Use Prototype with $(...), etc.
     $('someid').hide();
   </script>
 </head>
 <body></body>
</html>

但是,您仍然需要加载 Prototype 才能使 Scriptaculous 工作。 作为建议,如果您正在使用其他插件,您可能需要尝试 jQuery 的自动完成插件仅(或主要)用于自动完成器小部件的库。

You would need to enable no-conflict mode in jQuery, see:

http://docs.jquery.com/Using_jQuery_with_Other_Libraries

From the above link:

<html>
 <head>
   <script src="prototype.js"></script>
   <script src="jquery.js"></script>
   <script>
     jQuery.noConflict();

     // Use jQuery via jQuery(...)
     jQuery(document).ready(function(){
       jQuery("div").hide();
     });

     // Use Prototype with $(...), etc.
     $('someid').hide();
   </script>
 </head>
 <body></body>
</html>

However, you will still need to load Prototype for Scriptaculous to work. As a suggestion, you may want to try out jQuery's autocomplete plugin, if you're using those other libraries just (or mainly) for an autocompleter widget.

骷髅 2024-08-06 06:33:28

执行 jQuery 和 Scriptaculous 的最简单方法是:

var $j = jQuery.noConflict();

对 jQuery 使用 $j 而不是 $

例如,$j('#id')

The easiest way to do both jQuery and Scriptaculous is to do:

var $j = jQuery.noConflict();

and use $j instead of $ for jQuery.

$j('#id'), for example.

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