同时使用 jquery.js 和 scriptaculous.js 文件?
有没有办法同时使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 jQuery 中启用无冲突模式,请参阅:
http://docs.jquery.com/Using_jQuery_with_Other_Libraries
从上面的链接:
但是,您仍然需要加载 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:
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.
执行 jQuery 和 Scriptaculous 的最简单方法是:
对 jQuery 使用 $j 而不是 $。
例如,
$j('#id')
。The easiest way to do both jQuery and Scriptaculous is to do:
and use $j instead of $ for jQuery.
$j('#id')
, for example.