...
|
...
|
@@ -21,23 +21,24 @@ goodsSwiper = new Swiper('.banner-swiper', { |
|
|
});
|
|
|
|
|
|
|
|
|
$('#nav-tab li').on('click',function(){
|
|
|
if(!$(this).hasClass('focus')){
|
|
|
|
|
|
$('#nav-tab li').each(function(){
|
|
|
$(this).removeClass('focus');
|
|
|
});
|
|
|
|
|
|
$('#feedback-content .content').each(function(){
|
|
|
console.log('hello');
|
|
|
$(this).addClass('hide');
|
|
|
});
|
|
|
|
|
|
$(this).addClass('focus');
|
|
|
var index = $(this).index();
|
|
|
$('#feedback-content .content:eq('+index+')').removeClass('hide');
|
|
|
}
|
|
|
$('#nav-tab li').on('click', function() {
|
|
|
var index = $(this).index();
|
|
|
|
|
|
|
|
|
if (!$(this).hasClass('focus')) {
|
|
|
|
|
|
$('#nav-tab li').each(function() {
|
|
|
$(this).removeClass('focus');
|
|
|
});
|
|
|
$('#feedback-content .content').each(function() {
|
|
|
$(this).addClass('hide');
|
|
|
});
|
|
|
|
|
|
$(this).addClass('focus');
|
|
|
$('#feedback-content .content:eq(' + index + ')').removeClass('hide');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
// $('#iframe').load(function() {
|
|
|
// var mainheight = $(this).contents().find('body').height() + 30;
|
|
|
// $(this).height(mainheight);
|
...
|
...
|
|