未捕获的类型错误

未捕获的类型错误

本文介绍了未捕获的类型错误:$(...)。champ不是一个函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

< script type =text / javascript> 
$(document).ready(function(){
var champ;
$(。first_tab)。champ();

$(。 accordion_example)。champ({
plugin_type:accordion,
side:left,
active_tab:3,
controllers:true
});

$(。second_tab)。champ({
plugin_type:tab,
side:right,
active_tab:1 ,
控制器:false
});

$(。third_tab)。champ({
plugin_type:tab,
方:,
active_tab:4,
控制器:true,
ajax:true,
show_ajax_content_in_tab:4,
content_path:html.txt
});

});
< / script>
<! - 品牌形象 - >
< script type =text / javascript>
$('。tab-content> div')。hide();
$('。tab-content> div')。first()。slideDown();
$('。tab-buttons span')。click(function(){
var thisclass = $(this).attr('class');
$('#tabs- wrapp')。removeClass()。addClass('#tabs-wrapp')。addClass(thisclass);
$('。tab-content> div')。each(function(){
if ($(this).hasClass(thisclass)){
$(this).fadeIn(800);
}
else {
$(this).hide();
}
});
});
< / script>





我尝试过:



< pre>我收到错误.champ不是java脚本中的函数
解决方案



<script type="text/javascript">
  $(document).ready(function(){
    var champ;
    $(".first_tab").champ();

    $(".accordion_example").champ({
              plugin_type :  "accordion",
              side : "left",
              active_tab : "3",
              controllers : "true"
    });

    $(".second_tab").champ({
              plugin_type :  "tab",
              side : "right",
              active_tab : "1",
              controllers : "false"
    });

    $(".third_tab").champ({
              plugin_type :  "tab",
              side : "",
              active_tab : "4",
              controllers : "true",
              ajax : "true",
              show_ajax_content_in_tab : "4",
              content_path : "html.txt"
    });

  });
</script>
<!--branding script-->
   <script type="text/javascript">
    $('.tab-content>div').hide();
    $('.tab-content>div').first().slideDown();
      $('.tab-buttons span').click(function(){
      var thisclass=$(this).attr('class');
      $('#tabs-wrapp').removeClass().addClass('#tabs-wrapp').addClass(thisclass);
      $('.tab-content>div').each(function(){
        if($(this).hasClass(thisclass)){
        $(this).fadeIn(800);
        }
        else{
        $(this).hide();
        }
      });
      });
    </script>



What I have tried:

<pre>i am getting an error .champ is not a function in java script 
解决方案




这篇关于未捕获的类型错误:$(...)。champ不是一个函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-10 23:21