Joomla 1.6 中使用 jQuery 代替 Mootools

发布于 2024-11-15 01:01:00 字数 111 浏览 3 评论 0原文

我在 Joomla 前端使用 jQuery 和 Mootools。有没有简单的方法可以在不编辑 Joomla 核心文件的情况下摆脱 M​​ootools,这就是我一直在做的事情,但我不再需要那个临时解决方案。

Am am using both jQuery and Mootools on my Joomla frontend. Is there eny simple way to get rid of Mootools without editing Joomla core files, this is what i've been doing but I dont want that temprorary solution any more.

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

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

发布评论

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

评论(2

又爬满兰若 2024-11-22 01:01:00

在模板的 index.php 中:

$user     =& JFactory::getUser();
$app      =& JFactory::getApplication();

// Keep MooTools on the back-end 
if ( $app->isSite() ) {

  $prohibited = array (
        '/media/system/js/core.js',
        '/media/system/js/mootools-core.js',
        '/media/system/js/mootools-more.js',
        '/media/system/js/caption.js'
        );

 foreach ($this->_scripts as $key => $value) {
  if( in_array($key, $prohibited ) ) {
        unset($this->_scripts[$key]);
  }
 }
}

有插件,但是尽管您将安装另一个第 3 方插件,但您应该知道,如果将来在 Joomla 中添加一些 Mootools 脚本,您将不得不等待要更新的插件。使用此代码,您可以更好地控制,因为您需要做的就是将新脚本的 URI 添加到 '$prohibited' 数组中。

In template's index.php:

$user     =& JFactory::getUser();
$app      =& JFactory::getApplication();

// Keep MooTools on the back-end 
if ( $app->isSite() ) {

  $prohibited = array (
        '/media/system/js/core.js',
        '/media/system/js/mootools-core.js',
        '/media/system/js/mootools-more.js',
        '/media/system/js/caption.js'
        );

 foreach ($this->_scripts as $key => $value) {
  if( in_array($key, $prohibited ) ) {
        unset($this->_scripts[$key]);
  }
 }
}

There are plugins, but despite the fact you will install another 3rd party plugin, you should know that if some Mootools script is added to Joomla in the future you will have to wait for the plugin to be updated. With this code you have better control, because all what you need to do is add the URI of the new script to the '$prohibited' array.

独行侠 2024-11-22 01:01:00

有几种方法可以做到这一点。

  1. 有一个插件,我在这里找到
  2. 您可以编辑核心文件,您说过您不想这样做。 (我在此处找到了如何执行此操作的指南

但是为什么不使用MooTools呢?它几乎拥有所有你能找到的 jQuery 插件,而且代码也差不多(更不用说它更强大了)

There are a couple of ways of doing this.

  1. There is a plugin, which I found here
  2. You can edit the core files, which you said you do not want to do. (I found a guide on how to do it here)

But why not use MooTools? It has almost all the plugins you could find with jQuery, and the code it about the same (not to mention it is more powerful)

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