自定义JavaScript在Joomla 3模板中不起作用

用户3931028

我在joomla 3模板代码中包含javascript有问题。我正在尝试使用http://9bitstudios.github.io/flexisel/创建滑块菜单在只有HTML和Java代码的joomla之外,菜单非常有用。但是,当我尝试实现到joomla模板中时,我无法使其正常工作。

我的模板代码:

<?php 
defined( '_JEXEC' ) or die( 'Restricted access' );
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" 
   xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
    <jdoc:include type="head" />
    <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/reset.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/style.css" type="text/css" />



    <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/flexisel.css" type="text/css" />
    <?php
    JHtml::_('jquery.framework');
    ?>
    <script type="text/javascript" src="templates/<?php echo $this->template ?>/js/jquery.flexisel.js"></script>
    <script type="text/javascript" charset="utf-8">
        $(window).load(function() {
            $("#flexiselDemo1").flexisel();
        });
    </script>




</head>
<body>

    <div id="page">
        <div id="head">
            <a href="http://www.vossp.cz" class="logo">VOSSP</a>
        </div>
        <div id="main-menu">
            <jdoc:include type="modules" name="main-menu" /> 
        </div>
        <div id="footer">
        </div>
    </div>

</body>
</html>

我尝试使用来自http://docs.joomla.org/Adding_JavaScript的$ document-> addScriptDeclaration和$ document-> addScript ,但没有任何变化。

重物

您正在以noConflict模式导入jQuery,因此请尝试更改以下内容:

$(window).load(function() {
    $("#flexiselDemo1").flexisel();
});

对此:

jQuery(document).ready(function($) {
    $("#flexiselDemo1").flexisel();
});

注意:回到使用 JHtml::_('jquery.framework');

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章