代码之家  ›  专栏  ›  技术社区  ›  Yash

如何将jquery包含到joomla2.5文章中

  •  0
  • Yash  · 技术社区  · 11 年前

    我使用的是joomla2.5,我需要在我的一个页面(而不是主页)上有一个jquery效果,所以我想知道我能把jquery包含到joomla文章中吗?如果不能,我该怎么办?

    2 回复  |  直到 11 年前
        1
  •  0
  •   Bhojendra Rauniyar    11 年前

    您可以将index.php中的jquery包含在 <head> 部分

        2
  •  0
  •   JTC    11 年前

    您可以使用template中的addscript函数在head部分加载jquery。

    <?php
    $document = JFactory::getDocument();
    $document->addScript('/media/system/js/sample.js');
    ?>
    

    但要注意,你必须使用 noConflict 函数,因为joomla有时会使用mootools框架。