jquery href与zend routes问题

时间:2016-08-05 10:34:42

标签: javascript php jquery zend-framework

我找到了一个名为magister的免费模板

当我有这样的href:

<li><a href="#about">About me</a></li>

它有效

但是使用不同的网址会产生错误

<li><a id="contactos" href="<?php echo $this->url('application/contactos') ?>"><?php echo $this->translate('Contacts') ?></a></li>

我有这个错误

  

未捕获错误:语法错误,无法识别的表达式:/ application / contactos

我试图让这项工作需要一些帮助

var new_section =$($(current_item).attr('href'));                                          

alert(new_section);

new_section.fadeIn( section_show_time );


$("a", '.mainmenu').click(function() 
    {
        if( ! $(this).hasClass('active') ) { 
            current_item = this;
            alert('current : '+current_item);

            // close all visible divs with the class of .section
            $('.section:visible').fadeOut( section_hide_time, function() {
                alert('dentro do section visible');
                $('a', '.mainmenu').removeClass( 'active' );  
                $(current_item).addClass( 'active' );

                var new_section =$($(current_item).attr('href'));
                alert(new_section);

                new_section.fadeIn( section_show_time );
            });
        }
        return false;
    }); 


<section class="section" id="about">

0 个答案:

没有答案